function login(){
	if (trim(document.agentlogin.accountID.value) =="")	{
		errorMsg = 'Please enter the User ID.';
		alert(errorMsg);
		document.agentlogin.accountID.focus();
		return false;
	}
	else if (trim(document.agentlogin.password.value)=="") {
		errorMsg = 'Please enter the Password.';
		alert(errorMsg);
		document.agentlogin.password.focus();
		return false;
	}

       var domcook=GetCookie('locale');
 //alert(domcook);
       if(domcook=="en")
  {
    document.agentlogin.posid.value = "07V7";

document.agentlogin.currency.value = "INR";
  }
  if(domcook=="en-US")
  {
    document.agentlogin.posid.value = "07W7";
document.agentlogin.currency.value = "USD";

  }
  if(domcook=="en-UK")
  {
    document.agentlogin.posid.value = "07W7";
document.agentlogin.currency.value = "USD";

  }
   
	document.agentlogin.submit();
}
function centiva_login(){
	if (trim(document.centivalogin.username.value) =="")	{
		errorMsg = 'Please enter the User ID.';
		alert(errorMsg);
		return;
	}
	else if (trim(document.centivalogin.password.value)=="") {
		errorMsg = 'Please enter the Password.';
		alert(errorMsg);
		return;
	}
	document.centivalogin.action="https://centiva.sabre-ots.com/ctva090/login.do";
	document.centivalogin.submit();
}function trim(str)
{
	return str.replace(/^\s+|\s+$/g,'');
}


