function openNewWindow(filename,width,height)
{
	var newWindow;
	newWindow = window.open( filename , "", "width=" + width + ",height=" + height + "resizable=no,scrollbars=no");
	newWindow.document.write( "<html><head><title>" + filename.substring(14,filename.length) + "</title></head>" );
	newWindow.document.write( "<style type=\"text/css\">" );
	newWindow.document.write( "<!-- " );
	newWindow.document.write( "body { color: #FFFFFF; font-family:Verdana, Arial, Helvetica, sans-serif; font-size: 12px; }" );
	newWindow.document.write( "a:links { color: #FFFFF; }" );
	newWindow.document.write( "a:visited { color: #FFFFFF; }" );
	newWindow.document.write( "-->" );
	newWindow.document.write( "</style>" );
	newWindow.document.write( "<body leftmargin=0 rightmargin=0 topmargin=0 bottommargin=0>" );
	newWindow.document.write( "<img src=" + filename + " alt=" + filename.substring(14,filename.length) + " >" );
	newWindow.document.write( "<br/><br/><p align=\"center\"><a href=\"Javascript:window.close()\">[ Close Window ]</a></p>" );
	newWindow.document.write( "</body></html>" );
	newWindow.document.bgColor="#660000";
	newWindow.focus();
}

