
// Javascript permettant L'OUVERTURE DES IMAGES DANS UNE POP-UP, avec une taille maximale
function PopupImage(titre,img_src)
{
	var longueur = screen.availWidth;
	var hauteur = screen.availHeight;

	var w = window.open("","image","toolbar=no,scrollbars=yes,resizable=yes,width="+longueur+",height="+hauteur+",top=0,left=0");
	/*w.moveTo(0,0);*/
	w.resizeTo(longueur,hauteur);

	w.document.write("<html><head><title>photo : "+titre+"</title>");
    w.document.write("<link rel=\"stylesheet\" type=\"text/css\" href=\"http://www.pullybasket.ch/style/structure.css\" media=\"screen\" title=\"Normal\" />");
    w.document.write("<link rel=\"stylesheet\" type=\"text/css\" href=\"http://www.pullybasket.ch/style/formatting.css\" media=\"screen\" title=\"Normal\" />");


	w.document.write("<script type=\"text/javascript\">");
	w.document.write("function checksize(){");
	w.document.write("if (document.images[0].complete){");
	w.document.write("if(document.images[0].height+110<screen.availHeight){window.resizeTo("+longueur+",document.images[0].height+120); window.focus();}}");
	w.document.write("else {");
	w.document.write("setTimeout('checksize()',250) } }");
	w.document.write("</"+"script>");
	
	w.document.write("</head>");
	
	w.document.write("<body onload='checksize()'>");
	w.document.write("<p><br /><br /><br /><br /><img src=\""+img_src+"\" alt=\"photo : "+titre+"...\" width=\"100%\" /></p>");
	w.document.write("<p style=\"text-align:center;\"><a href=javascript:self.close()>Fermer la fen&ecirc;tre</a></p>");
	w.document.write("</body></html>");
	w.document.close();
}

