// EXT IMAGE
function extImg(img_url) {        
    html='<html><head><title></title><body leftmargin="0" marginwidth="0" topmargin="0" marginheight="0"><center><img src="'+img_url+'" border=0 name="imageF" onLoad="window.resizeTo(document.imageF.width+30,document.imageF.height+38)"></center></body></html>';
    popupImage = window.open('','img','toolbar=0,location=0,directories=0,menuBar=0,scrollbars=1,resizable=1');
    popupImage.document.open();
    popupImage.document.write(html);
    popupImage.document.close();
}

// EXT WIN
function openWindow(url, w, h, sbar, rs) {
   var windowprops = "width=" + w + ",height=" + h + ",scrollbars=" + sbar + ",resizable=" + rs;
   popup = window.open(url,'_blank',windowprops);
}

