// common functions for popups

function openPopup(url){
    var w = window.open(url,'popup','scrollbars=yes,width=525,height=375');
    w.focus();
}
function openLargePopup(url){
    var w = window.open(url,'largePopup','scrollbars=yes,width=725,height=575');
    w.focus();
}
function openFullPopup(url) {
    var w = window.open(url,'fullPopup','scrollbars=yes,width=830,height=625');
    w.focus();
}
function openWCIPopup(url) {
    var w = window.open(url,'wjwebcheckin','width=1015,height=625,menubar=0,toolbar=0,location=0,resizable=0');
    w.focus();
}
function openCNWPopup(url){
    var w = window.open(url,'cnwPopup','scrollbars=yes,width=760,height=575');
    w.focus();
}
function targetParentWindow(url) {
  opener.location.href = url;
  window.close();
}

