function popuppage(address, width, height) {  
var windowprops = "location=no,scrollbars=no,menubars=no,toolbars=no,resizable=no" +  
",left=" + 20 + ",top=" + 20 + ",width=" + width + ",height=" + height;

popup = window.open(address,"MenuPopup",windowprops);  
}