function openPicInNewWindow(_uri,_width,_height) {
	picWin = window.open("","_blank","toolbar=no, location=no, directories=no, status=no, menubar=no, scrollbars=no, resizable=no, copyhistory=no, width="+_width+", height="+_height)
	picWin.document.write("<html>");
	picWin.document.write("<head>");
	picWin.document.write("<title>::JSPC::</title>");
	picWin.document.write("</head>");
	picWin.document.write('<body background="jspc_bg_grey3.gif" topmargin=0 leftmargin=0>');
	picWin.document.write('<table height=100% width=100% border=0 cellspacing=0 cellpadding=0><tr><td width=100% height=100% align=center valing=center>');
	picWin.document.write('<img src="'+_uri+'" style="border: 1px solid #eeeeee;">');
	picWin.document.write('</td></tr></table>');
	picWin.document.write("</body>");
	picWin.document.write("</html>");
	picWin.focus();
}
