function himalayanbouquet()
{ 
	Window=open("","","width=400,height=250");
	Window.document.open();
	Window.document.write("<html><head><title>Himalayan Bouquet Order</title></head>")
	Window.document.write("<span style='background-color: #000000'><p><b><center><font color='#FFFFFF' face='Tahoma'>&nbsp; Himalayan Bouquet Order  </center></b></p></font></span>")
	Window.document.write("<form name='myform' method='POST' action='hb.php3'>")
	Window.document.write("<table><tr><td colspan=4></td></tr>")
	Window.document.write("<tr><td width='30'></td><td><font size='2' face='Tahoma'><b>Name :</b></font></td><td><input type=text name='name'> </td><td></td></tr>")
	Window.document.write("<tr><td width='30'></td><td><font size='2' face='Tahoma'><b>Address :</b></font></td><td><textarea name='address'></textarea> </td><td></td></tr>")
	Window.document.write("<tr><td width='30'></td><td><font size='2' face='Tahoma'><b>Email :</b></font></td><td><input type=text name='email'> </td><td></td></tr>")
	Window.document.write("<tr><td width='30'></td><td><font size='2' face='Tahoma'><b>Phone no :</b></font></td><td><input type=text name='phone' cols='30' rows='10'></textarea> </td><td></td></tr>")

	Window.document.write("<tr><td width='30'><td colspan=2 align=center><image src='images/send.gif' name='send'></td><td></td></tr>")
	Window.document.write("</table>")
	Window.document.send.onclick=check1;
	Window.document.write("</form>")
	Window.focus();
}

function check1()
{

	var formcheck=Window.document.myform.name.value;
	var formcheck1=Window.document.myform.email.value;
	var formcheck2=Window.document.myform.address.value;
	
	if(formcheck=='' || formcheck1=='' || formcheck2=='' )
		Window.alert('please fill up all the fields');
	else
		Window.document.myform.submit();
}
