
var winW;
var winH;

function getH(){
	if (self.innerWidth){
		winH = self.innerHeight-10;
	} else if (document.documentElement && document.documentElement.clientWidth) {
		winH = document.documentElement.clientHeight;
	}else if (document.body){
		winH = document.body.clientHeight;
	}
	return winH;
}
function getW(){
if (self.innerWidth){
		winW = self.innerWidth-12;
	} else if (document.documentElement && document.documentElement.clientWidth) {
		winW = document.documentElement.clientWidth;
	}else if (document.body){
		winW = document.body.clientWidth;
	}
	return winW;
}

function MM_jumpMenu(targ,selObj,restore){ //v3.0

  eval(targ+".location='"+selObj.options[selObj.selectedIndex].value+"'");

  if (restore) selObj.selectedIndex=0;

}
