
var ncontent ="";
var IE = document.all?true:false

// If NS -- that is, !IE -- then set up for mouse capture
if (!IE) document.captureEvents(Event.MOUSEMOVE)
document.onmousemove = change;
var x = 0;
var y = 0;
function change(e)
{
if (IE) { // grab the x-y pos.s if browser is IE
    x = event.clientX + document.body.scrollLeft
    y = event.clientY + document.body.scrollTop
  } else {  // grab the x-y pos.s if browser is NS
    x = e.pageX
    y = e.pageY
  }  
}
function callloc(no)
{
document.getElementById(no).style.top= y+"px";
document.getElementById(no).style.left= x+"px";
}
function onloader()
{
document.getElementById('page-loader').style.display='none';
}
function validate()
{
if(document.formname.term.checked == false)
alert("Please accept the terms and conditions of Faatee.com");
else if(document.formname.eid.value == ""|| document.formname.url.value == ""|| document.formname.space.value == "null"|| document.formname.country.value == "null")
alert("Please enter all the mandatory details");
else
formname.submit();
}

