﻿
function load() {
var load = window.open('http://www.domain.com','','scrollbars=no,menubar=no,height=600,width=800,resizable=yes,toolbar=no,location=no,status=no');
}

//function popup(thePage) {
//var loadpage = "thePage.html";
//window.open("http://demo.quedata.com/loadpage", "",'scrollbars=no,menubar=no,height=600,width=800,resizable=yes,toolbar=no,location=no,status=no');
//} 


function popup1() {
 my_window = window.open("",
    "mywindow","status=1,width=350,height=150");
my_window.document.write('<H1>The Popup Window</H1>');   
}

function closepopup() {
 if(false == my_window.closed) 
 {
    my_window.close ();
 }
 else
 {
    alert('Window already closed!');
 }
}



