<!--

function createWindow( imageName, windowTitle, w, h ) {

	theImage = new Image;
	theImage.src = imageName;
	theImage.height = h;
	theImage.width = w;

	var newURL =	"<html><head><title>Rosati Group Properties v1.00</title>" +
			"<style type='text/css'>" +
			"<!--" +
			".title { font-family: helvetica, arial, sans-serif; font-size: 28px; color: #C80000; }" +
			"a.lnk_sml:visited, a.lnk_sml:active, a.lnk_sml:link { font-family: Tahoma, arial, helvetica, sans-serif; font-size: 10px; color: #C80000;	text-decoration: underline; }" +
			"a.lnk_sml:hover { font-family: Tahoma, arial, helvetica, sans-serif; font-size: 10px; color: #FF0000; text-decoration: none; }" +
			"-->" +
			"</style>" +
			"</head>" +
			"<body bgcolor=\"white\">" +
			"<center>" +
			"<table border=0 cellpadding=3 cellspacing=0 width=\"100%\" height=\"100%\">" +
			"<tr><td height=22 align='center' bgcolor='#F5F5F5'><span class='title'>" + windowTitle + "</span></td></tr>" +
			"<tr><td align=center valign=middle>" +
			"<img src=\"" + imageName + "\" border=0 alt=\"" + windowTitle + "\">" +
			"</td></tr>" +
			"<tr><td align=right height=22 bgcolor='#F5F5F5'><a href=\"javascript:window.print()\" class=\"lnk_sml\">Print Photo</a> &nbsp;|&nbsp; <a href=\"javascript:window.close()\" class=\"lnk_sml\">Close Window</a></td></tr>" +
			"</table>" +
			"</center>" +
			"</body></html>";

	imageHeight = theImage.height + 55;
	imageWidth  = theImage.width + 20;

	if( document.layers ) {
		var imageWindow = window.open( "","imageWindow",",height="+imageHeight+",width="+imageWidth+",scrollbars=yes,left=" + ((screen.width/40)-(370/40)) + ",top=5,resizable=no");
	}
	else {
		var imageWindow = window.open( "","imageWindow",",height="+imageHeight+",width="+imageWidth+",scrollbars=yes,left=" + ((screen.width/40)-(370/40)) + ",top=10,resizable=no");
	}
	imageWindow.document.write( newURL );

}

// -->