// JavaScript Document


function linktolt(menu,target) {
	s=' <table WIDTH="100%" BORDER=0 CELLSPACING=0 CELLPADDING=0 align=center>\n';
	for (var i=0; i<menu.length; i=i+2){
		s+= '<tr>\n';
		s+= '<td valign="top" width="50%">\n';
		s+=' <table WIDTH="100%" BORDER=0 CELLSPACING=10 CELLPADDING=0 align=center>\n';
		s+= '<tr>\n';
		s+= '<td valign="top" width="50%"><div style="width:100%; height:100%; font-size:10px; font-weight:600">';
		s+= menu[i];
		s+= '</div></td>\n';
		s+= '</tr>\n';
		s+= '</table>\n';
		s+= '</td>\n';
		s+= '<td width="1px" bgcolor="#0033CC"><img src="images/ures.gif" border="0" width=1/></td>\n';
		s+= '<td valign="top" width="50%">';
		s+=' <table WIDTH="100%" BORDER=0 CELLSPACING=10 CELLPADDING=0 align=center>\n';
		s+= '<tr>\n';
		s+= '<td valign="top" width="50%"><div style="width:100%; height:100%; font-size:10px; font-weight:600">';
		if (i+1<menu.length) s+= menu[i+1]
		s+= '</div></td>\n';
		s+= '</tr>\n';
		s+= '</table>\n';
		s+= '</td>\n';
		s+= '</tr>\n';
		s+= '<tr>\n';
		s+= '<td valign="top" width="50%">';
		s+= '<hr align="center" width=90% color=#0033CC>\n';
		s+= '</td>\n';
		s+= '<td width="1px" bgcolor="#0033CC"><img src="images/ures.gif" border="0" width=1/></td>\n';
		s+= '<td valign="top" width="50%">';
		if (i+1<menu.length) s+= '<hr align="center" width=90% color=#0033CC>\n';
		s+= '</td>\n';
		s+= '</tr>\n';
	}
	s+= '</table>\n';
	document.getElementById(target).innerHTML = s;
}

var almenuSzinHover = "#ffffff";
var almenuSzin="#eeeeee";
var almenuHatterHover="#158AFF";
var almenuHatter="#297EE7";

function almenuHover(mid){
	document.getElementById(mid).style.color=almenuSzinHover;
	document.getElementById(mid).style.backgroundColor=almenuHatterHover;
}

function almenuNormal(mid){
	document.getElementById(mid).style.color=almenuSzin;
	document.getElementById(mid).style.backgroundColor=almenuHatter;
}



