function validate1()
	{
	if(creditor1_OK()==false)
		{
		return false;
		}
	document.form1.submit();
	}

//check for email id
 function creditor1_OK()
 {
       if (document.form1.SC.value.length == 0)
		{
		alert ("E mail id is mandatory,please fill it up");
		document.form1.SC.focus();
		return false;
		}
  


//check for product name
 
       if (document.form1.PD.value.length == 0)
		{
		alert ("Product name is mandatory,please fill it up");
		document.form1.PD.focus();
		return false;
		}
  
return true;
}

