function open_win(image, caption) {
    var thisPage;
    thisPage =
		window.open('/templates/rhuk_milkyway/photo-gallery-popup.php','title','width=550,height=455,status=no,scrollbars=yes,location=no,directories=no,copyhistory=no');
 		thisPage.document.write('<html><head>'+
	    '<script src="/gallery.js" language="javascript" type="text/javascript"></script>'+
		'<title>Go Birdz Photo Gallery - '+caption+'</title></head>'+
		'<body style="margin: 0; padding: 5px;">'+
	 	'<div style="background-color: #ffffff; border: 3px solid #7AC810; padding: 10px; font-size: 9px; font-family: verdana, arial; color: #666666; text-align: center;"><img src="/images/gallery/'+image+'" width="500" height="375" alt="Photo Gallery: '+caption+'" title="Photo Gallery: '+caption+'" /><br /><p>'+caption+'</p></div>'+
        '</body></html>');
		return thisPage;
}

