function zoom(image,x,width,height,caption) {
	var thum=window.open('', x,'width='+width+',height='+height+',toolbar=no,scrollbars=no,menubar=no,status=no,resizable=no');
	thum.document.write('<html><head><title>'+caption+'</title></head><body bgcolor="#777777" text="#ffffff" marginwidth=0 marginheight=0 topmargin=0 leftmargin=0>');
	thum.document.write('<img src="'+image+'" alt="'+caption+'" width="'+width+'">');
	thum.document.write('<p style="font: normal 11px arial, verdana; padding: 6px; margin: 0;">'+ caption +'</p></body></html>');
	thum.document.close();
}


e_mail_reg = /^([a-zA-Z0-9\.\-\_]+)(@)([a-zA-Z0-9\.\-\_]+)(\.)([a-zA-Z])/;
function test(form)
{
if (form.FName.value=="") 
{
alert("Enter your First Name!")
form.FName.focus();
return false;
}
else if (form.LName.value == "") 
{
alert("Enter your Last Name!")
form.LName.focus();
return false;
}
else if (form.Phone.value == "") 
{
alert("Enter your Phone!")
form.Phone.focus();
return false;
}
else if (form.Email.value == "") 
{
alert("Enter your E-mail address!")
form.Email.focus();
return false;
}
else if (!e_mail_reg.test(form.Email.value)) 
{
alert("E-mail address is not correct!")
form.Email.focus();
return false;
}
else if (form.Company.value == "") 
{
alert("Enter your Company!")
form.Company.focus();
return false;
}
else if (form.Address.value == "") 
{
alert("Enter your Address!")
form.Address.focus();
return false;
}
else if (form.Question.value == "") 
{
alert("Please enter the message!")
form.Question.focus();
return false;
}
else if (form.userdigit.value == "") 
{
alert("Type the characters you see in the picture!")
form.userdigit.focus();
return false;
}
else{
//alert("Cool!")
return true;
}
}
