var bb=new Array('0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0');

function showmenu(a) {
	c='hidecontent'+a;
	if (bb[a]==0) {
		window.document.getElementById(c).style.display='block';
		bb[a]=1;
		return
	}
	if(bb[a]==1){
		window.document.getElementById(c).style.display='none'; 
		bb[a]=0;
		return
	}
}

// edited by Frenzie from ShowProxMenu (JDList - 10-24-03 - http://www.jd5000.net)
function show_menu() {
	var ProxMenuSub = document.getElementById('menu');
	ProxMenuSub.style.display = 'block';
	if (window.getComputedStyle)
		ProxMenuSub.style.backgroundColor = window.getComputedStyle(document.body,null).getPropertyValue('background-color');
	else if (document.body.currentStyle)
		ProxMenuSub.style.backgroundColor = document.body.currentStyle.backgroundColor;
}
	
function HideMenu() {
	document.getElementById('menu').style.display = 'none';
}	
	
function ShowIcon() {
	document.getElementById('links_main').style.display = 'none';
	document.getElementById('ProxIcon').style.display = 'block';
}
function HideIcon() {
	document.getElementById('ProxIcon').style.display = 'none';
	document.getElementById('links_main').style.display = 'block';	
}
function tkills() {
var spans=window.document.getElementsByTagName('span'); 

for(var i=0;i<spans.length;i++) { 

	if(spans[i].className=='Prox') {

		if(spans[i].style.display!='inline') {
			spans[i].style.display='inline'; 
		} 

		else { 
			spans[i].style.display='none'; 
		}
	 } 
}; 

void(null);

}
