
var imgWnd=null;

function PopupImageWindow(url,w,h,title) 
{
 if (imgWnd != null) imgWnd.close();
imgWnd = window.open('','_blank','width='+w+',height='+h+',toolbar=no,menubar=no,location=no,status=no, resizable=yes,scrollbars=no, cursor=hand');

var imgTitle=(title)?title:url+": "+w+'x'+h;
var img = '<img src="'+url+'" width="'+w+'" height="'+h+'" border="0"  style="cursor:hand" alt="close window">'
with (imgWnd.document){
  open();
  write('<html><head><title>'+imgTitle+'</title>'+
  '</head><body onclick="window.close();"  leftmargin="0" topmargin="0" rightmargin="0" bottommargin="0" marginwidth="0" marginheight="0">' 
  + img + ' </body></html>');
  close();
}
return false;
}

var newWnd=null;
function PopUp(url,w,h) 
{
if (newWnd != null) newWnd.close();
	newWnd=window.open(url, '_blank','location=no,resizable=yes,scrollbars=no, status=no,menubar=no,toolbar=no, titlebar=no,\
	top=30,left=30,width='+w+',height='+h); 
	newWnd.focus();    
}




