// JavaScript Document

var subid=undefined;

function showsub(id){
	if(subid!=undefined){
		document.getElementById('sub'+subid).style.display='none';
		subid=undefined;
	}
	obj=document.getElementById('sub'+id);	
	if(obj!=undefined){
		obj.style.display='block';
		subid=id;
	}
}

function hidesubmenu(){
	if(subid!=undefined){
		document.getElementById('sub'+subid).style.display='none';
		subid=undefined;
	}
}
