/* 
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */


function popUpNav(URL,width,height){
newWindow=window.open(URL,'newWindow','toolbar=0,scrollbars=1,location=1,statusbar=0,menubar=0,resizable=1,width='+width+',height='+height+',left=0,top=0');
newWindow.focus();
return false;
}

function popUpNavNoResize(URL,width,height){
newWindow=window.open(URL,null,'toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=0,width='+width+',height='+height+',left=0,top=0');
newWindow.focus();
return false;
}
