function open_win(image) {
	var image;
    var thisPage;
    thisPage =
		window.open('','title','width=790,height=650,resizable=no,status=yes,scrollbars=yes,location=no,directories=no,copyhistory=no');
 		thisPage.document.write('<html><head>'+
		'<style>a {color: #ffffff;} a:hover {text-decoration: none;}</style>'+
		'<script type="text/javascript" src="/js/next-previous.js"></script>'+
		'<title>DaVine Limousines Gallery</title></head>'+
		'<body style="margin: 0; background-color: #6b112a; color: #ffffff; text-align: center; font-family: Verdana; font-size: 11px; padding: 10px; padding-top: 20px;">'+
	 	'<div style="text-align: center;"><p><img src="/images/gallery/'+image+'_large.jpg" name="imgSrc" id="imgSrc" width="750" height="563" alt="DaVine Limousines" /></p><table width="750" style="font-size: 10px;"><tr><td width="50" style="text-align: left;"><a href="javascript:onClick=window.print()">Print</a></td><td style="text-align: center;">&laquo; <a href="javascript:onClick=prev();">Previous</a> | <a href="javascript:onClick=next();">Next</a> &raquo;</td><td width="50" style="text-align: right;"><a href="javascript:window.close()">Close</a></a></td></tr></table></div>'+
        '</body></html>');
		thisPage.document.close();
		if (window.focus) {
			thisPage.focus();
		}
		return thisPage;
}
