function MM_jumpMenu(targ,selObj,restore){ //v3.0
	  eval(targ+".location='"+selObj.options[selObj.selectedIndex].value+"'");
	  if (restore) selObj.selectedIndex=0;
}

function initFooterPosition() {
	targetDiv = bw.dom?document.getElementById('footer'):bw.ie4?document.all['footer']:bw.ns4?eval('document.'+'footer'):0; 
	rightDiv = bw.dom?document.getElementById('rightcontent'):bw.ie4?document.all['rightcontent']:bw.ns4?eval('document.'+'rightcontent'):0;
	
	if (targetDiv != 0 && rightDiv != 0) {
		if (targetDiv.offsetTop < (rightDiv.offsetHeight+20)) {
			targetDiv.style.position = 'relative';
			targetDiv.style.top = rightDiv.offsetHeight + 20 - targetDiv.offsetTop;
			targetDiv.style.width = '100%';
			targetDiv.style.zIndex = 1;
		}
	}

}