function openPic3(url,width,height) {
	t=window.open('','','width='+width+',height='+height+',toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no');
	t.document.open();
	t.document.write('<HTML><HEAD><TITLE>GUM</TITLE></HEAD><BODY BGCOLOR="#eeeaba" TOPMARGIN="0" LEFTMARGIN="0" MARGINHEIGHT="0" MARGINWIDTH="0"><IMG SRC="'+url+'" WIDTH="'+width+'" HEIGHT="'+height+'" ONCLICK="window.close()" ALT="" STYLE="cursor:pointer"></BODY></HTML>');
	t.document.close();
}

