
/* ----- UNIPortal.js ----- */
function imgwin(src,title,height,width){
    windowProp = "width="+width+",height="+height+",status=no,location=no,toolbar=no,menubar=no,scrollbars=no";
    var page = window.open("","sbwin",windowProp);
    page.document.open();
    page.document.write('<html>');
    page.document.write('<head><title>');
    page.document.write(title);
    page.document.write('</title></head>');
    page.document.write('<body style="padding:0px;margin:0px;"><img src="');
    page.document.write(src);
    page.document.write('"></body></html>');
    page.document.close();    
}

