function sendpd(){

			  if (document.theForm.topic.value=="")
			    {
				  alert("Please input the topic");
				  return false;
				}
			  if (document.theForm.details.value=="")
			    {
				  alert("Please input the Details.");
				  return false;
				}

				return true;
				
}	  


function quotation_check(){
	if(document.theForm.details.value==''){
				  alert("Please input the Details.");
				  return false;
	}//end if
return true;

}//end function

function opennew(url,none,properties){
window.open(url,none,properties);
}