function popupRoom(image,title) { 
	w = open( "",'image','width=0,height=0,toolbar=no,scrollbars=no,resizable=no'); 
	w.document.write("<html><head><title>"+title+"</title></head>"); 
	w.document.write("<script language=javascript>function checksize() { if (document.images[0].complete) { window.resizeTo(document.images[0].width,document.images[0].height+30); window.focus();} else { setTimeout('checksize()',250) } }</"+"script>"); 
	w.document.write("<style type=\"text/css\">body { padding: 0; }</style>"); 
	w.document.write("<body onload='checksize()' onblur='window.close()' onclick='window.close()' leftMargin=0 topMargin=0 marginwidth=0 marginheight=0>");
	w.document.write("<img src='"+image+"' alt='"+title+"' />"); 
	w.document.write("</body></html>"); 
	w.document.close();
}

function popupHome(image,title) { 
	window.open('popup_home.php','Guestbook','toolbar=0, location=0, directories=0, status=0, scrollbars=0, resizable=0, copyhistory=0, menuBar=0, width=600, height=450');
}

function popupGuest(image,title) { 
	window.open('popup_guestbook.php','Guestbook','toolbar=0, location=0, directories=0, status=0, scrollbars=0, resizable=0, copyhistory=0, menuBar=0, width=600, height=400');
}
