function goInternational(_1){
if(_1!=""){
document.location.href=_1;
}
}
confirm_click=false;
function MM_openBrWindow(_2,_3,_4){
_4=_4+",location=yes";
window.open(_2,_3,_4);
}
function validateCriteria(_5){
if(""==_5.value){
alert("Please enter text in the search field before clicking on search.");
return false;
}
return true;
}
function popup(_6,_7,_8){
window.open(_6,_7,_8);
}
function popOpen(_9,_a,_b){
var _c=window.open(_9,"popOpen","width="+_a+",height="+_b+",resizable=yes,scrollbars=yes,menubar=yes,status=no");
}
function popOpenNoMenu(_d,_e,_f){
var Win=window.open(_d,"popOpenNoMenu","width="+_e+",height="+_f+",resizable=no,scrollbars=yes,menubar=no,status=no");
}
function popOpenStatic(url,_12,_13){
var Win=window.open(url,"popOpenStatic","width="+_12+",height="+_13+",resizable=no,scrollbars=no,menubar=no,status=no");
}
function echeck(str){
var at="@";
var dot=".";
var lat=str.indexOf(at);
var _19=str.length;
var _1a=str.indexOf(dot);
if(str.indexOf(at)==-1){
alert("Invalid E-mail ID");
return false;
}
if(str.indexOf(at)==-1||str.indexOf(at)==0||str.indexOf(at)==_19){
alert("Invalid E-mail ID");
return false;
}
if(str.indexOf(dot)==-1||str.indexOf(dot)==0||str.indexOf(dot)==_19){
alert("Invalid E-mail ID");
return false;
}
if(str.indexOf(at,(lat+1))!=-1){
alert("Invalid E-mail ID");
return false;
}
if(str.substring(lat-1,lat)==dot||str.substring(lat+1,lat+2)==dot){
alert("Invalid E-mail ID");
return false;
}
if(str.indexOf(dot,(lat+2))==-1){
alert("Invalid E-mail ID");
return false;
}
if(str.indexOf(" ")!=-1){
alert("Invalid E-mail ID");
return false;
}
return true;
}