	function checkSynopsis(shiptek_form)
	{	
			if(shiptek_form.synopsis_title.value=='')
			{
				alert("Please Enter Title");
				shiptek_form.synopsis_title.focus();
				return false;
			}
			
			if(shiptek_form.synopsis_abstract.value=='')
			{
				alert("Please Enter Your Abstract");
				shiptek_form.synopsis_abstract.focus();
				return false;
			}
		
				
			if(shiptek_form.synopsis_author.value=='')
			{
				alert("Please Enter Your  Name");
				shiptek_form.synopsis_author.focus();
				return false;
			}
			if(shiptek_form.synopsis_address.value=='')
			{
				alert("Please Enter Your  Address");
				shiptek_form.synopsis_address.focus();
				return false;
			}
			if(shiptek_form.synopsis_email.value==0)
			{
				
				alert("Please Enter your email id");
				shiptek_form.synopsis_email.focus();
				return false;
			}
			if(shiptek_form.synopsis_company.value=='')
			{	
				alert("Please Enter your Company Name");
				shiptek_form.synopsis_company.focus();
				return false;
			}
					
	}	

