/* Form Validations */

function verify()
{
var name=document.form1.Fullname.value;
var company=document.form1.Company.value;
var phone=document.form1.phone.value;
var email=document.form1.Email.value;


if(name=='')
{
alert("Enter the Name"); 
document.form1.Fullname.focus();
return false;
}

if(company=='')
{
alert("Enter the Company Name"); 
document.form1.Company.focus();
return false;
}

if(document.form1.Address.value=='')
{
alert("Enter the Address");
document.form1.Address.focus();
return false;
}

if(phone=='')
{
alert("Enter the Phone Number"); 
document.form1.phone.focus();
return false;
}

if(email=='')
{
alert("Enter the Email ID"); 
document.form1.Email.focus();
return false;
}
}



/* Site Functions */

function popitup(url , width_x, height_x)
{
	
  newwindow=window.open(url,'name','height='+height_x+',width='+width_x+',scrollbars=yes');
	if (window.focus) 
	{
	newwindow.focus()
	}
	return false;
}