
function showHint_MY(y,m,d)
{
//alert(y+m+d);
if (y.length==0 && m.length==0 && d.length==0)
  { 
  document.getElementById("txtHint").innerHTML="";
  return;
  }
xmlHttp2=GetXmlHttpObject2();
if (xmlHttp2==null)
  {
  alert ("Your browser does not support AJAX!");
  return;
  } 
var url="http://makeyour.net/profile/gen_cal.php";
var your_url=document.location.href;

var is_www_ok=your_url.indexOf('www.');
if (is_www_ok==-1)
 { 
url="http://makeyour.net/profile/gen_cal.php";
 }
else{
 url="http://www.makeyour.net/profile/gen_cal.php";
}


url=url+"?year="+y+"&month="+m+"&day="+d;
//alert(url);
xmlHttp2.onreadystatechange=stateChanged2;
xmlHttp2.open("GET",url,true);
xmlHttp2.send(null);
} 



