function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}
function showhide(t){
	var o = document.getElementById(t);
	var dis = o.style.display;
	dis == "block" ? o.style.display = "none" : o.style.display = "block";
}