var newWin = null; 
function popUp(strURL, strType, strHeight, strWidth) { 
 var strOptions=""; 
 if (strType=="console") 
   strOptions="resizable,height="+ 
     strHeight+",width="+strWidth; 
 if (strType=="fixed") 
   strOptions="status,height="+ 
     strHeight+",width="+strWidth; 
 if (strType=="fixedscroll") 
   strOptions="status,scrollbars,height="+ 
     strHeight+",width="+strWidth; 
if (strType=="fixedpos") 
   strOptions="status,height,screenX=300,left=300,screenY=300,top=300,height="+ 
     strHeight+",width="+strWidth; 
 if (strType=="elastic") 
   strOptions="scrollbars,"+ 
     "resizable,height="+
     strHeight+",width="+strWidth; 
 if (strType=="elasticmenu") 
   strOptions="menubar,scrollbars,"+ 
     "resizable,height="+ 
     strHeight+",width="+strWidth; 
 newWin = window.open(strURL, 'newWin', strOptions); 
 newWin.focus();
 
}

function MM_jumpMenu(targ,selObj,restore){ //v3.0
  if (targ == 'blank') { 
  	win = window.open(selObj.options[selObj.selectedIndex].value, 'newwindow')
  } else {
	eval(targ+".location='"+selObj.options[selObj.selectedIndex].value+"'");
	if (restore) selObj.selectedIndex=0;
  }
}

function MM_jumpMenuGo(selName,targ,restore){ //v3.0
  var selObj = MM_findObj(selName); if (selObj) MM_jumpMenu(targ,selObj,restore);
}

function cboNav(_o){
 if(_o.selectedIndex!=0){
 var _oWin=window.open(_o.options[_o.selectedIndex].value,'_blank');
 }
}

function launch (str_url, str_name, int_width, int_height) 
{
	var winX = (screen.width - int_width) / 2;
	var winY = (screen.height - int_height) / 2;
	str_WinParams = 'height=' + int_height +',width=' + int_width + ',top=' + winY+',left=' + winX + ',menubar=1,toolbar=1,scrollbars=1,resizable=1,status=1,toolbar=1,location=1';
	win = window.open(str_url, str_name, str_WinParams);
	if ((parseInt(navigator.appVersion) >= 4)|| (navigator.appName = 'Netscape')) { win.window.focus(); }
}

// Board of Directors function

function toggleDiv(_id){_oDivStyle=document.getElementById(_id).style;(_oDivStyle.display=='block')?_oDivStyle.display='none':_oDivStyle.display='block';} 

// onload function for popup on IR landing page
function IRpopup()
{
window.open('/ubm/storage/notice/?t=popup','popupname','width=300,height=200,directories=no,location=no,menubar=no,scrollbars=no,status=no,toolbar=no,resizable=no');
}
//-->