// suckerfish functions for IE
sfHover = function() {
	var sfEls = document.getElementById("nav").getElementsByTagName("LI");
	for (var i=0; i<sfEls.length; i++) {
		sfEls[i].onmouseover=function() {
			this.className+=" sfhover";
		}
		sfEls[i].onmouseout=function() {
			this.className=this.className.replace(new RegExp(" sfhover\\b"), "");
		}
	}
}
if (window.attachEvent) window.attachEvent("onload", sfHover);


function MM_openBrWindow(theURL,winName) { //open popup sendtofriend function
	var width = 500;
	var height = 670;
	var posleft = screen.width/2 - width/2;
	var postop = screen.height/2 - height/2;
					
  	window.open(theURL,winName,'width='+width+',height='+height+',left='+posleft+',top='+postop);
}


function MM_jumpMenu(targ,selObj,restore){ //for make selection in program within channel page
	eval(targ+".location='"+selObj.options[selObj.selectedIndex].value+"'");
  	if (restore) selObj.selectedIndex=0;
}