<!--Begin
var picwin = null;
function NewWindowPics(pic,w,h) {
 NewWindowPicsClose();
 contents = '<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">' +
            '<HTML>\n<HEAD>\n<TITLE>Photo Gallery<\/TITLE>\n<LINK href="taradar.css" type="text/css" rel="stylesheet">\n' +
            '<\/HEAD>\n<BODY>\n' +
            '<DIV align="center">\n <IMG src="' + pic +'" alt="" border="0">\n' +
            '<BR><BR>\n <A href="#" onClick="window.close()">Close window<\/A>\n<\/DIV>\n<\/BODY>\n<\/HTML>';

 options = "toolbar=0,status=0,menubar=0,scrollbars=1,resizable=0,location=0,width=" + w + ",height=" + h + ",screenX=1,screenY=1,top=1,left=1";
 picwin = window.open("","",options);
 picwin.document.write(contents);
 picwin.document.close();
}
function NewWindowPicsClose() {
 if (picwin != null && !picwin.closed) picwin.close();
}
//--End-->
