/* British Land Common JavaScript */

var newWin = null; 
function popUp(strURL, strType, strWidth, strHeight) { 
 if (newWin != null && !newWin.closed) 
   newWin.close(); 
 var strOptions=""; 
 if (strType=="elasticmenu") 
   strOptions="scrollbars,"+ 
     "resizable,width="+ 
     strWidth+",height="+strHeight; 
 newWin = window.open(strURL, 'newWin', strOptions); 
 newWin.focus(); 
}


