

function popUp(URL) 
{ 
    window.open(URL,'thename','width=650,height=450,scrollbars=yes,status=yes'); 
} 


function popUp1(URL,w,h) 
{ 
   window.open(URL,'thename','width='+w+',height='+h+',scrollbars=yes,status=yes'); 
} 
    
function newWin(URL,TITLE) 
{ 
 
  window.open(URL,TITLE,'width=650,height=500,scrollbars=no,status=yes,resizable=yes'); 
 
}
