﻿function popup(url, name, width, height)
{   
   
    MM_openBrWindow(url, name, 'scrollbars=yes,width='+width+',height='+height);
    return false;
}

function MM_openBrWindow(theURL,winName,features) { //v2.0
  //window.open(theURL,winName,features);
  
  jkpopwin=window.open("","",features);  
jkpopwin.document.open();
jkpopwin.document.write('<html><title>'+winName+'</title><body><img src="'+theURL+'"></body></html>');
jkpopwin.document.close();
jkpopwin.focus();

}

