if(document.all && !document.getElementById){
	document.getElementById = function(Id){
		return document.all[id];
	}
}

function menuOver(item, urlroot) {
	document.getElementById('img_'+item).src=urlroot+'/z_img/topnav/active/'+item+'.gif'; 
	var thediv = document.getElementById('smdiv_'+item);
	if (thediv) thediv.style.visibility='visible';
	
	
}

function menuOut(item, urlroot) {
	document.getElementById('img_'+item).src=urlroot+'/z_img/topnav/inactive/'+item+'.gif';
	var thediv = document.getElementById('smdiv_'+item);
	if (thediv) thediv.style.visibility='hidden';	
}

function popUp(URL) {
day = new Date();
id = day.getTime();
eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=0,width=1030,height=625,left = 325,top = 175');");
}
