﻿function openPopup(url, name) {
    var height = 800;
    var width = 818;
    var left = (screen.availWidth - width) / 2;
    var top = (screen.availHeight - height) / 2 - 20;
    var popup = window.open(url, name, 'height=' + height + ',width=' + width + ',left=' + left + ',top=' + top + ',status=no,toolbar=no,menubar=no,location=no,scrollbars=yes');
    //alert(popup.location.href);
    //setTimeout("popup.location.href = popup.location.href", 2000);
    //popup.location.href = popup.location.href;
    popup.location.href = url;
}

