function GoLoc (location) {
  	
	self.location.href=location;
}

function GoLoc2 (location, cat) {
  	
	self.location.href=location+cat;
}

function jsTest (){

  alert("js works!");

}


wmtt = null;
 
 
function showWMTT(id, data1) {

  	wmtt = document.getElementById(id);
 	wmtt.style.display = "inline-block"

	document.getElementById("tc_h1").firstChild.nodeValue = data1;

}
 
function hideWMTT() {
 	wmtt.style.display = "none";


}



