﻿// JScript File
function basicPopup(url,w,h,top,left) {
            self.name = "main";
            var screen_width = screen.width;
            var screen_height = screen.height;
            if (screen_height<680) 
            pagewindow = window.open(url,"page","width=" + screen_width + ",height=" + screen_height + ",top=" + top + ",left=" + left + ",scrollbars=1,location=0,status=1,menubar=0,directories=0,toolbar=0,resizable=1");
            else
            pagewindow = window.open(url,"page","width=" + w + ",height=" + h + ",top=" + top + ",left=" + left + ",scrollbars=0,location=0,status=1,menubar=0,directories=0,toolbar=0,resizable=0");
}
