function openLarge(url, title, width, height)
{
var wnd = window.open("", 'ps_win', 'resizable=yes,scrollbars=no,menubar=no,status=no,height='+height+',width='+width);
wnd.document.open(); wnd.document.write('<HTML><HEAD><TITLE>'+title+'</TITLE></HEAD><BODY TOPMARGIN="0" LEFTMARGIN="0" BOTTOMMARGIN="0" RIGHTMARGIN="0"><IMG SRC="'+url+'" WIDTH="'+width+'" HEIGHT="'+height+'" BORDER="0" TITLE="'+title+'" ONCLICK="window.close();"></BODY></HTML>'); 
wnd.document.close(); wnd.focus( );
}
