function newWindow(sURL,w,h){
    var args = "scrollbars=no,toolbar=no,directories=no,menubar=no,resizeable=yes,status=no,width=" + w + ",height=" + h;
    var editorwindow = window.open(sURL,"newwin",args);
}
function newWindowscroll(sURL,w,h){
    var args = "scrollbars=yes,toolbar=no,directories=no,menubar=no,resizeable=yes,status=no,width=" + w + ",height=" + h;
    var editorwindow = window.open(sURL,"newwin",args);
}

winWidth = 400; // sets a default width for browsers who do not understand screen.width below
winheight = 400; // ditto for height

if (screen){ // weeds out older browsers who do not understand screen.width/screen.height
   winWidth = screen.width;
   winHeight = screen.height;
}

function newWindowfull(win){
	newWindow = window.open(win,'newWin','toolbar=no,location=no,scrollbars=no,resizable=yes,width='+winWidth+',height='+winHeight+',left=0,top=0');
	newWindow.focus();
}
