<!--
var picURL;
var newWindow;
var newWindowTitle;
var _w, _h;

function popup(theURL, title, w, h) 
{
	newWindowTitle = title;
	picURL = theURL;
	newWindow = window.open('', 'imgN', 'status=no,scrollbars=auto,resizable=yes,width=' + w + ',height=' + h + '');
	newWindow.focus();
	newWindow.location = 'pic.html';
	
	_w = w, _h = h;
}

function writeHTML() 
{
	var htmlStr = '';
	htmlStr += '<html>\n<head>\n<title>' + newWindowTitle + '</title>\n</head>';
	htmlStr += '<body>\n<table border="0" width="100%">\n<tr>\n<td align="center">';
	htmlStr += '<img src=' + picURL + '>';
	htmlStr += '<br>' + newWindowTitle + '\n';
	htmlStr += '<br>\n<br>\n<a href ="" onClick="window.close();"><img src="/img/close.gif" width="100" height="30" border="0" alt="Close window"></a>';
	htmlStr += '\n</tr>\n</table>\n</html>';
	newWindow.document.write(htmlStr);
	newWindow.document.close();
	newWindow.resizeTo(_w, _h + 90);
}

//-->
