function wo(lnk){
	try{window.open(lnk);return false;}catch(ee){return true;}
}

function sh(div){
	alert(div);
	el = document.getElementById(div);
	alert(el.style.display);
	if(el.style.display=="none"){
	el.style.display = "block";
	}else{
	el.style.display = "none";
	};
}

function shWho(d){
	var divs = Array("nA","nB","nC","nD","nE","nF","nG","nH","nI","nJ");
	for(i=0;i<divs.length;i++){
		document.getElementById(divs[i]).style.display="none";
	}
	if(d!=""){
		document.getElementById(d).style.display="block";
	}
}