// JavaScript Document
function showHide3(idObj, idCtrl, showTxt, hideTxt) {
	var obj = document.getElementById(idObj);
	var ctrl = document.getElementById(idCtrl.id);
	if (obj.style.display == 'none') {
		obj.style.display = 'block';
		ctrl.innerHTML = hideTxt;
	} 
	else {
		obj.style.display = 'none'
		ctrl.innerHTML = showTxt;
	}	
}
function openWindowSimple (url, windowname, options) {
	newWindow=window.open(url,windowname,options);
}
function MM_jumpMenu(targ,selObj,restore){ //v3.0
  eval(targ+".location='"+selObj.options[selObj.selectedIndex].value+"'");
  if (restore) selObj.selectedIndex=0;
}