function openWindow(width, Height, imgname, title)
{
	PreviewWindow = window.open('','_blank',"width=" + width + ",height="+ Height + ",toolbar=0,location=0,directories=0,status=0,menubar=1,scrollbars=0,resizable=0,copyhistory=0,top=0,left=0");
	PreviewWindow.document.write('<head>');
	PreviewWindow.document.write('<title>' + title + '</title>');
	PreviewWindow.document.write('<title>Location of the PenBro ApartHotel</title>');
	PreviewWindow.document.write('<style>');
	PreviewWindow.document.write('body { margin: 0em; }');
        PreviewWindow.document.write('a { font-family: Trebuchet MS, Arial, Verdana; font-size: 9pt; color: #000000; font-weight: bold; text-decoration: none; }');
        PreviewWindow.document.write('a:hover { color: gray; }');
        PreviewWindow.document.write('.txt { font-family: Trebuchet MS, Arial, Verdana; font-size: 9pt; color: #000000; font-weight: bold; text-decoration: none; }');
	PreviewWindow.document.write('</style>');
	PreviewWindow.document.write('</head>');
	PreviewWindow.document.write('<body bgcolor=#ffffff>');
	PreviewWindow.document.write('<table border=0 cellpadding=0 cellspacing=0 width=100% height=100%>');
	PreviewWindow.document.write('<tr><td class=txt valign=top>');
	PreviewWindow.document.write('<img src="' + imgname + '" alt="' + title + '"><BR><A HREF="javascript:window.close();">close</A> · <A HREF="javascript:if (document.all) { print(); } else { window.print(); }">print</A> · To set as wallpaper, rightclick on the picture and click Set as wallpaper.');
	PreviewWindow.document.write('</td></tr></table>');
	PreviewWindow.document.write('</body>');
	PreviewWindow.document.close();
}