function Init()
{
  var WrapperHeight = 1500;	
  var WrapperHt = FixedPage(WrapperHeight); 
  
  if (OldBrowser())
	window.document.getElementById("logo").src =  "ZentechSmallLogo.gif";

    window.document.getElementById("logo").style.height = 104 / WrapperHeight * 100 + '%';
	
  
}

function InitForm()
{
document.contact.name.focus();
}

function ValidateForm()
{
if (document.contact.name.value == '')
{
alert('You must enter a name');
document.contact.name.focus();
return false;
}
else if (document.contact.email.value == '') 
{
alert('You must enter a valid email address');
document.contact.email.focus();
return false;
}
else
return true;
}