function imgpopup(nom, titre, hsize, wsize) {
	var neWindow = window.open("","","toolbar=0,status=0,resizable=1, height="+hsize+", width="+wsize+"");
	if (neWindow != null) {
		neWindow.document.write("<HTML><HEAD><TITLE>"+titre+"</TITLE></HEAD>");
		neWindow.document.write("<BODY BGCOLOR=black>");
		neWindow.document.write("<CENTER><A HREF=#nop onClick='self.close()'><IMG SRC="+nom+" BORDER=0></A></CENTER>");
		neWindow.document.write("</BODY></HTML>");
		neWindow.document.close();
	}
}

function htmpopup(nom, titre, hsize, wsize) {
	var neWindow = window.open(nom,titre,"toolbar=0,status=0,resizable=1, scrollbars=1, height="+hsize+", width="+wsize+"");
	if (neWindow != null) {
		neWindow.document.close();
	}
}

function winPopUp(txt, lg, ht)
{
	window.open(txt, "","resizable=1, scrollbars=1, height="+lg+", width="+ht+"");
}

function verify_order() {
	if (document.forms[0].nom.value=="") { alert("Le champ nom doit être saisi"); return false; }
	if (document.forms[0].prenom.value=="") { alert("Le champ prenom doit être saisi"); return false; }
	if (document.forms[0].addr1.value=="") { alert("Le champ adresse doit être saisi"); return false; }
	if (document.forms[0].codep.value=="") { alert("Le champ code postal doit être saisi"); return false; }
	if (document.forms[0].ville.value=="") { alert("Le champ ville doit être saisi"); return false; }
	if (document.forms[0].telephone.value=="") { alert("Le champ telephone doit être saisi"); return false; }
	if (document.forms[0].email.value=="") { alert("Le champ email doit être saisi"); return false; }
}