// JavaScript Document

function makebox(URL,w,h) {
 box = window.open("","box","width="+w+",height="+h+",scrollbars=no,resizable=yes");
 box.location.href = URL; 
 box.opener = window;  
 box.opener.name = URL;
}
