// JavaScript Document
/* THIS IS TO LEVEL DIV LEFT WITH DIV MAIN */

function fixH(one,two) {
if (document.getElementById(one)) {
var lh=document.getElementById(one).offsetHeight;
var rh=document.getElementById(two).offsetHeight;
var nh = Math.max(lh, rh);
document.getElementById(one).style.height=nh+"px";
document.getElementById(two).style.height=nh+"px";
}
}


window.onload=function(){
fixH('global_main','global_left'); /* THE DIV NAME SHOULD MATCH THE LAYOUT IN CSS */
}


/* Common JavaScript Library */

function jumpMenu(targ,selObj, restore) {
	eval(targ+".location='"+selObj.options[selObj.selectedIndex].value+"'");
	if (restore) selObj.selectedIndex=0;	
}
