<!--

function validateContact(form)
 { 
var error="";
// empty ****************************************


if (document.form1.name.value=="")
 error+="...Enter your Name.\n";

if (document.form1.email.value=="")
 error+="...Enter your Email.\n";

if (document.form1.recip.value=="")
 error+="...Choose a Recipient.\n";

if(error !="")
{
alert("Please correctly fill these fields:\n" + error);
return false;
}

if(document.form1.email.value.indexOf('@') == -1 || document.form1.email.value.indexOf('.') == -1)
 error+="...A valid email address\n";

if(error !="")
{
alert("please correctly fill these fields:\n" + error);
return false;
}




return true;
 } // end function
 


function StartWindow(thefilename)
{
SmallWin=window.open(thefilename, 'SmallWin','toolbar=no,scrollbars=no,resizable=no,menubar=no,width=340,height=500');
SmallWin.window.focus()

}


// -->