<!--

function createWindow( imageName, windowTitle, w, h ) {

	theImage = new Image;
	theImage.src = imageName;
	theImage.height = h;
	theImage.width = w;

	var newURL =	"<html><head><title>The Ilya Salkind Company, Inc.</title>" +
			"<link rel=stylesheet href=\"style.css\" type=\"text/css\">" +
			"</head>" +
			"<body topmargin=0 bgcolor=\"black\">" +
			"<center>" +
			"<table border=0 cellpadding=3 cellspacing=0 width=\"100%\" height=\"100%\">" +
			"<tr><td height=22 align='center'><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><span class='white'><a href=\"javascript:window.close()\" class=\"link-dark\">Close Window</a></span></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 );

}

// -->