  function cleartext(id,keyword){
	  //document	  
	  var serKey=document.getElementById(id).value;
    if(serKey.indexOf(keyword)>-1){
    	document.getElementById(id).value="";
    }
  }
  function displayHint(id,hint){
	  //document	  
	  var serKey=document.getElementById(id).value;
    if(serKey==""){
    	document.getElementById(id).value=hint;
    }
  }

  
function goToCountry(country){
    SetCookie("defCountry",country,5184000,"/")    
    window.location.href='/html/'+(country)+'.html'
    //alert(GetCookie('defCountry'));    
}