﻿// JavaScript Document

var jNewWindow = null;
function fnNewWindow(src, pTitle, pHeight, pWidth)
{
	if(jNewWindow && !jNewWindow.closed)
	{
		jNewWindow.close();
	}
	jNewWindow = window.open("", "Photo", "height=" + (parseInt(pHeight) + parseInt(20)) + ", width=" + (parseInt(pWidth) + parseInt(20)) + ", left=100, top=100, resizable=no, toolbar=no, scrollbars=no, menubar=no, location=no");
	jNewWindow.document.write("<html><head><title>" + pTitle + "</title></head>");
	jNewWindow.document.write('<body><img src="' + src +'"></body></html>');
	jNewWindow.document.close();	
}

