function aktSiteMenu (id) {
	var evalString="var allid=document.all." + id + ";";
	eval(evalString);
	var aktColor='#FFB351';
	if (document.getElementById(id)) {
		document.getElementById(id).style.backgroundColor=aktColor;
		document.getElementById(id).bgColor=aktColor;
		document.getElementById(id).background='images/oldal_menu_hatter2.gif';
	} else if (allid) {
		allid.style.backgroundColor=aktColor;
		allid.bgColor=aktColor;
		allid.background='images/oldal_menu_hatter2.gif';
	}
}

function inaktSiteMenu (id) {
	var evalString="var allid=document.all." + id + ";";
	eval(evalString);
	var inaktColor='#C6D1DE';
	if (document.getElementById(id)) {
		document.getElementById(id).style.backgroundColor=inaktColor;
		document.getElementById(id).bgColor=inaktColor;
		document.getElementById(id).background='images/oldal_menu_hatter.gif';
	} else if (allid) {
		allid.style.backgroundColor=inaktColor;
		allid.bgColor=inaktColor;
		allid.background='images/oldal_menu_hatter.gif';
	}
}

function newscreen(window_no){
	if(window_no==0)
		window.open("","imfscreen0","width=320,height=255,resizable=no,scrollbars=no");
}

