// JavaScript Document
function winRedim() {
	window.moveTo(0,0);
	window.resizeTo(screen.availWidth,screen.availHeight);
	}
	
function popupIMG(img) {
	titre=" L'Hostellerie du chateau - Bar-sur-Loup";
	w=open("",'photo','width=100,height=100,toolbar=no,scrollbars=no,resizable=yes, top=0, left=0');	
	w.document.write("<HTML><HEAD><TITLE>"+titre+"</TITLE></HEAD>");
	w.document.write("<SCRIPT language=javascript>function checksize() {");
	w.document.write("var ie = (document.all) ? 1:0; var ns = (document.layers) ? 1:0;");
	w.document.write("if(ie || ns) {if (document.images[0].complete) {window.moveTo(0,0);window.resizeTo(document.images[0].width+80,document.images[0].height+80); window.focus();} else {setTimeout('checksize()',250);}}");
	w.document.write("else  { window.moveTo(0,0); window.resizeTo(700,500); window.focus();}");
	w.document.write("}</"+"SCRIPT>");
	w.document.write("<BODY bgcolor='#000000' onload='checksize()' onBlur='self.close();' onclick='self.close();' leftMargin=0 topMargin=0 marginwidth=0 marginheight=0>");
	w.document.write("<TABLE cellspacing='0' cellpading='0' width='100%' height='100%'><TR><TD align='center' height='100%'>");
	w.document.write("<IMG src='"+img+"' border=0>");
	w.document.write("</TD></TR></TABLE>");
	w.document.write("");
	w.document.write("</BODY></HTML>");
	w.document.close();
}