function open_win(image, caption) {
    var thisPage;
    thisPage =
		window.open('','title','width=540,height=410,status=no,scrollbars=yes,location=no,directories=no,copyhistory=no');
 		thisPage.document.write('<html><head>'+
		'<title>A Panoramic Country Homestay Gallery - '+caption+'</title></head>'+
		'<body style="margin: 0; padding: 0; background-color: #b65656;">'+
	 	'<div style="padding: 10px; font-size: 9px; font-family: verdana, arial; color: #ffffff; text-align: center;"><img src="/imgs/'+image+'" width="500" height="333" alt="Photo Gallery: '+caption+'" title="Photo Gallery: '+caption+'" /><br /><p>'+caption+'</p></div>'+
        '</body></html>');
		return thisPage;
}
