function njPopup(i,w,h,it,st)
{
var t1='<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">';
var t2='<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">';
var t3='<head>';
var t4='<title>large image | '+it+'</title>';
var t5='<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" />';
var t6='<meta http-equiv="pragma" content="no-cache" />';
var t7='<meta http-equiv="expires" content="0;" />';
var t8='<meta http-equiv="cache-control" content="no-cache" />';
var t9='<meta name="copyright" content="'+st+'" />';
var t10='<meta name="language" content="english" />';
var t11='<meta name="MSSmartTagsPreventParsing" content="true" />';
var t12='<link rel="stylesheet" type="text/css" href="/css/style.css" />';
var t13='</head>';
var t14='<body id="popup">';
var t15='<p><a href="javascript:window.close();">[ click to close window ]</a></p>';
var t16='<h1>'+it+'</h1>';
var t17='<img class="" src="/images_/item'+i+'_l.jpg" width="'+w+'" height="'+h+'" alt="image of '+it+'" title="this image is copyright &copy; '+st+'" />';
var t18='<div class="clear"></div>';
var t19='</body>';
var t20='</html>';
var text=t1+t2+t3+t4+t5+t6+t7+t8+t9+t10+t11+t12+t13+t14+t15+t16+t17+t18+t19+t20;

var wsize=w+30;
var hsize=h+60;
var w1=(screen.width-wsize)/2;
var h1=(screen.height-hsize)/2;
var props='width='+wsize+',height='+hsize+',top='+h1+',left='+w1+',resizable,scrollbars';

var popup=window.open('','',props);
popup.document.write(text);
popup.document.close();
}
