// JavaScript Document
function confirmSubmit() {
test = "êtes vous sur de vouloir supprimer ?"
 choix = confirm(test);
 if (choix == true) { document.forms.form1.submit();  }
 else { return false; }
}
function PopupCenter(page,largeur,hauteur,options) {
  var top=(screen.height-hauteur)/2;
  var left=(screen.width-largeur)/2;
  window.open(page,"","top="+top+",left="+left+",width="+largeur+",height="+hauteur+","+options);
}
function PopupProjet(img,largeur,hauteur) {
	titre="ZOOM PROJET";
	top=(screen.height-hauteur)/2;
  	left=(screen.width-largeur)/2;
	w=open("",'image','top='+top+',left='+left+',width=400,height=400,toolbar=no,scrollbars=no,resizable=no');	
	w.document.write('<html><head><title>'+titre+'</title><style type="text/css">body { margin:0px;padding:0px; } html { margin:0px;padding:0px; }</style>');
	w.document.write('<sc'+'ript language="java'+'script"> function checksize()  { if (document.images["img"].complete) {  window.resizeTo(document.images[0].width+12,document.images[0].height+60); window.focus();} else { setTimeout("checksize()",250) } }</'+'script></head>');
	w.document.write('<body onload="checksize()" style="padding:0px;margin:0px;"><a href="javascript:window.close();" title="Fermer la fenetre"><img src="img/projet/'+img+'" border="0" name="img" alt="Fermer la fenetre" /></a>');
	w.document.write('');
	w.document.write('</body></html>');
	w.document.close();
}
function PopupTshirt(img,largeur,hauteur) {
	titre="ZOOM Tshirt";
	top=(screen.height-hauteur)/2;
  	left=(screen.width-largeur)/2;
	w=open("",'image','top='+top+',left='+left+',width=400,height=400,toolbar=no,scrollbars=no,resizable=no');	
	w.document.write('<html><head><title>'+titre+'</title><style type="text/css">body { margin:0px;padding:0px; } html { margin:0px;padding:0px; }</style>');
	w.document.write('<sc'+'ript language="java'+'script"> function checksize()  { if (document.images["img"].complete) {  window.resizeTo(document.images[0].width+12,document.images[0].height+60); window.focus();} else { setTimeout("checksize()",250) } }</'+'script></head>');
	w.document.write('<body onload="checksize()" style="padding:0px;margin:0px;"><a href="javascript:window.close();" title="Fermer la fenetre"><img src="img/shop/tshirt/'+img+'" border="0" name="img" alt="Fermer la fenetre" /></a>');
	w.document.write('');
	w.document.write('</body></html>');
	w.document.close();
}
