// JavaScript Document

function popup(theURL) {
var win=window.open(theURL,'popup','scrollbars=yes,resizable=yes,width=540,height=600');
win.focus();
}
function popupRequest(theURL) {
var win=window.open(theURL,'popup','scrollbars=yes,resizable=yes,width=680,height=780');
win.focus();
}
function popupMumo(theURL) {
var win=window.open(theURL,'popup','scrollbars=yes,resizable=yes,width=300,height=410');
win.focus();
}