// Shared Scripts
// Updated JH 2004-3-10

// Load Pop-up Window WITHOUT toolbar
function loadPopup(url, w, h){
 popWin = open(url,'popWin', 'toolbar=no,location=0,directories=no,status=yes,menubar=0,scrollbars=1,resizable=1,copyhistory=0,width=' + w + ',height=' + h + ',top=10,left=10');
 popWin.focus();
}

// Load Pop-up Window WITH toolbar
function loadPopupToolbar(url, w, h){
 popWin = open(url,'popWin', 'toolbar=yes,location=0,directories=no,status=yes,menubar=0,scrollbars=1,resizable=1,copyhistory=0,width=' + w + ',height=' + h + ',top=10,left=10');
 popWin.focus();
}