
function popWin2(page, width, height, toolbar, location, status, menubar, scrollbars){
	//toolbar, location, status, menubar, scrollbars should be 'yes' or 'no'
	
	/*
    if (navigator.appName == 'Netscape') {
        adjWidth = width + 20;
        adjHeight = height + 20;
    }
    else {
        adjWidth = width + 50;
        adjHeight = height + 150;
    }
    */
	
    window.open(page,'windowName','width=' + width + ',height=' + height + ',toolbar=' + toolbar + ' ,location=' + location + ',directories=yes,status=' + status + ',menubar=' + menubar + ',scrollbars=' + scrollbars);

}//end function

