 function fachat() {
	if (document.images)
		return true;
	else
		return false;
}

function pic(URL) {
	window.open(URL,"","width=420,height=530,status=yes,toolbar=no,menubar=no,location=no,resizable=1,fullscreen=no");
	return false;
}

function display(imageURL, imagePOS, imageW, imageH) {

if (budeFachat) {
PreView = window.open("","","width=" + imageW + ",height="+ imageH + ",status=yes,toolbar=no,menubar=no,location=no,resizable=0,fullscreen=no");

PreView.document.open();
PreView.document.write("<html><head>");
PreView.document.write("<meta http-equiv=\"content-type\" content=\"text/html; charset=iso-8859-2\" />");
PreView.document.write("<title>" + imageURL + "</title>");
PreView.document.write("</head><body bgcolor=#000000 text=000000>");
PreView.document.write("<div align=" + imagePOS + ">");
PreView.document.write("<a " + "onClick='window.close()'><img " + "src='" + imageURL + "' /></a>");
PreView.document.write("</div>");
PreView.document.write("</body></html>");
PreView.document.close();

		return false;
	}
	else {
		return true;
	}
}

budeFachat = fachat();
