<!-- 
	function searchPopup(pwidth,pheight,px,py) 
	{ 
		searchbmo=window.open('http://search.bmo.com/BMOfinancial/english/query.html'+'?col='+document.search.col.value+'&qp=&la='+document.search.la.value+'&ws='+document.search.ws.value+'&qt='+document.search.qt.value+'&qo='+document.search.qo.value,'vbiPopup',' toolbar=no,location=no,directories=no,status=no,scrollbars=yes,location=0,resizable=no,copyhistory=no,width='+pwidth+',height='+pheight+',top='+py+',left='+px);
		searchbmo.focus();
	} 
	
	function jumpMenu(targ, selObj, restore) 
	{
		if (selObj.options[selObj.selectedIndex].value != "") 
		{
			str = selObj.options[selObj.selectedIndex].value;
			if (str.indexOf("/popup/") != -1 || str.indexOf("/recovery_lnk.html") != -1 || str.indexOf("/recovery_lnk_fr.html") != -1 || str.indexOf("/rpopup/") != -1) 
			{
				DropdownPopup(str);
			} 
			else 
			{
				eval(targ + ".location='" + selObj.options[selObj.selectedIndex].value + "'");
				if (restore)
					selObj.selectedIndex = 0;
			}
		}
	}
	
	function DropdownPopup(myUrl) 
	{
		top.name = "mainWindow";
		dropDownPopup=window.open( myUrl,'dropDownPopup',' toolbar=no,location=no,directories=no,status=no,scrollbars=yes,resizable=yes,copyhistory=no,width=640,height=550');
		if (navigator.appVersion.substring(0,1) >= '3')
		{
			dropDownPopup.focus();
		}
	}
//-->
