function showpic(pic, x, y) {
	v=window.open('','pic','width='+x+',height='+y+',top=20,left=20,toolbar=no,location=no,status=no,menubar=no,scrollbars=no,resizable=no');
	v.document.write('<HTML><BODY bgcolor="#666666" leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">');
	v.document.write('<IMG src="'+pic+'" width="'+x+'" height="'+y+'" border="0" hspace="0" vspace="0">');
	v.document.write('</BODY></HTML>');
	v.document.close();
	v.focus();
}
