function popupImg(img, width, height)


{


	w=open("","image","width="+width+",height="+height+",toolbar=no,scrollbars=yes,resizable=yes");

	w.document.write("<HTML><HEAD><TITLE>"+img+"</TITLE></HEAD>");

	w.document.write("<BODY leftMargin=0 topMargin=0 marginwidth=0 marginheight=0>");

	w.document.write("<IMG src='"+img+"' border=0>");

	w.document.write("</BODY></HTML>");

	w.document.close();


}

function popup(page) {
	// ouvre une fenetre sans barre d'etat, avec ascenseur
	window.open(page,'popup','width=650,height=400,toolbar=false,scrollbars=yes');	
}

function popup_sized(page, width, height) {
	// ouvre une fenetre sans barre d'etat, avec ascenseur et taille variable
	window.open(page,'popup','width='+width+',height='+height+' ,toolbar=false,scrollbars=yes');	
}
function showPageFooter(base)
{
	
	document.writeln("<table border='0' cellpadding='0' cellspacing='1' width='760'>");
	document.writeln("<tr>");
	document.writeln("<td class='footer'>&copy;Garage Bernard Despont | 1690 Villaz-St-Pierre | t&eacute;l. 026/653 15 33 | fax 026/653 21 67 | by <a target='_blank' href='http://www.net-creation77.net'>net-creation77</a></td>");
	document.writeln("</tr>");
	document.writeln("</table>");
}



  

