function openWindow( imageName ) {

	window.open( imageName,'scene',"height=300,width=500, menubar=yes, left=10, top=10");

}

function createWindow( imageName, windowTitle ) {

	theImage = new Image;
	theImage.src = imageName;
	var imageHeight, imageWidth;

	var newURL =	"<html><head><title>" + windowTitle + "</title>" +
			"<link rel=stylesheet href=\"imagestyle.css\" type=\"text/css\">" +
			"</head>" +
			"<body topmargin=0 leftmargin=0 marginwidth=0 marginheight=0 bgcolor=#ffffff>" +
			"<center>" +
			"<table border=0 cellpadding=3 cellspacing=0 width=\"100%\" height=\"100%\">" +
			"<tr><td bgcolor=#000000 height=17><font color=#FFFF00 face=verdana size=-1><b>" + windowTitle + "</b></font></td></tr>" +
			"<tr><td bgcolor=#ffffff align=center valign=middle>" +
			"<img src=\"" + imageName + "\" border=0 alt=\"" + windowTitle + "\">" +
			"</td></tr>" +
			"<tr><td bgcolor=#000000 align=right height=17><font color=#ffffff face=Arial size=-1>Digital Photo by: Lou Tortola, www.eliquid.com    <a href=\"javascript:window.close()\">[Close]</a> </font></td></tr>" +
			"</table>" +
			"</center>" +
			"</body></html>";

	imageHeight = theImage.height + 0;
	imageWidth  = theImage.width + 10;

	//var imageWindow = window.open( '','',"outerWidth=" + imageWidth + ",outHeight=" + imageHeight + ",height=" + imageHeight + ",width=" + imageWidth + ",left=" + ((screen.width/2)-(imageWidth/2)) + ",top=50,resizable=yes, menubar=yes");

	if( document.layers ) {
		var imageWindow = window.open( "","imageWindow",",height=430,width=510,left=" + ((screen.width/2)-(350/2)) + ",top=50,resizable=yes, menubar=yes");
	}
	else {
		var imageWindow = window.open( "","imageWindow",",height=430,width=510,left=" + ((screen.width/2)-(350/2)) + ",top=50,resizable=yes, menubar=yes");
	}
	imageWindow.document.write( newURL );

}
