function mouse_over_menu(box_ID) 
{
	if(navigator.appName != "Netscape")
	{
		document.getElementById(box_ID).style.display = "block";
	}
}
function mouse_out_menu(box_ID) 
{
	if(navigator.appName != "Netscape")
	{	
		document.getElementById(box_ID).style.display = "none";
	}
}

function set_language(lang_key)
{
	var cookie_exp = new Date();
	var build_date = cookie_exp.getTime() + (2000 * 24 * 60 * 60 * 1000);
	cookie_exp.setTime(build_date);	
	
	document.cookie = "lang_key=" + lang_key + "; expires=" + cookie_exp + "; path=/; domain=.oleo.tv;";	
}
if (top!=self) top.location=self.location;
