function jump_menu(targ,selObj,restore){ //v3.0
  eval(targ+".location='"+selObj.options[selObj.selectedIndex].value+"'");
  if (restore) selObj.selectedIndex=0; 
}

function MM_jumpMenu(targ,selObj,restore){ //v3.0 to maintain compatiblity - will be deprecated after June 01
  eval(targ+".location='"+selObj.options[selObj.selectedIndex].value+"'");
  if (restore) selObj.selectedIndex=0; 
}

function openBrWindow(theURL,winName,features) { //v2.0
   window.open(theURL,winName,features);
  //if (newWind.opener == null) { // for Nav 2.0x 
   //newWind.opener = self // this creates and sets a new property 
//}
}

//line break to <br> conversion utils for textarea elements Chrisg 11.10.02
function addBRtags(){
	if(document.mp.part1){
		if(document.mp.part1.value.indexOf("<br>")==-1){
			document.mp.part1.value = document.mp.part1.value.replace(new RegExp("\r","g"),"<br>")
		}
	}
}

function removeBRtags(){
	if(document.mp.part1){
		document.mp.part1.value = document.mp.part1.value.replace(new RegExp("<br>","g"),"");
	}
}
