/* popup */
function popup(url) {
    var width = 500;
    var height = 660;
    var top = (screen.availHeight - height)/2;
    var left = (screen.availWidth - width)/2;
    window.open(url, new Date().getTime(),'alwaysRaised=yes,toolbar=no,location=no,directories=no,status=yes,menubar=no,resizable=yes,screenX=0,screenY=0,titlebar=yes,scrollbars=yes,width='+ width + ',height=' + height + ',left=' + left + ',top=' + top);
}

function popup2(url) {
    var width = 640;
    var height = 380;
    var top = (screen.availHeight - height)/2;
    var left = (screen.availWidth - width)/2;
    window.open(url, new Date().getTime(),'alwaysRaised=yes,toolbar=no,location=no,directories=no,status=yes,menubar=no,resizable=yes,screenX=0,screenY=0,titlebar=yes,scrollbars=yes,width='+ width + ',height=' + height + ',left=' + left + ',top=' + top);
}

function popup3(url) {
    var width = 500;
    var height = 500;
    var top = (screen.availHeight - height)/2;
    var left = (screen.availWidth - width)/2;
    window.open(url, new Date().getTime(),'alwaysRaised=yes,toolbar=no,location=no,directories=no,status=yes,menubar=no,resizable=yes,screenX=0,screenY=0,titlebar=yes,scrollbars=yes,width='+ width + ',height=' + height + ',left=' + left + ',top=' + top);
}
