function imgWin(img,iw,ih) {  var ww = iw;  var wh = ih;  var sw = (screen.width * .5) - ((ww * .5) + 10);  var sh = (screen.height * .5) - ((wh * .5) + 40);    imgWindow = window.open('','imgWindow','width=' + ww + ',height=' + wh + ',left=' + sw + ',top=' + sh + ',toolbar=0,directories=0,menubar=0,resizable=0,location=0,scrollbars=0,copyhistory=0');  imgWindow.document.write('<html>\n');  imgWindow.document.write('<head>\n');  imgWindow.document.write('<title>' + img + '</title>\n');  imgWindow.document.write('</head>\n');  imgWindow.document.write('<body marginwidth="0" marginheight="0" topmargin="0" leftmargin="0">\n');  imgWindow.document.write('<img src="media/pics/' + img + '.jpg" width="' + iw + '" height="' + ih + '">\n');  imgWindow.document.write('</body>\n');  imgWindow.document.write('</html>\n');  imgWindow.document.close();  imgWindow.focus();}