function create_window(w,h,url) 
{ var options = "width=" + w + ",height=" + h + ",status=no"; new_window = window.open(url, "new_window", options);}

function popUp(url) {
sealWin=window.open(url,"win",'toolbar=0,location=0,directories=0,status=1,menubar=1,scrollbars=1,resizable=1,width=500,height=450');
self.name = "mainWin";
}

function create_window_option(w,h,url) 
{ var options = "scrollbars=yes, resizable=yes, width=" + w + ",height=" + h + ",status=no"; new_window = window.open(url, "new_window", options);}
