
function Switzer( ) {
  this.on = function ( n ) {
   for(var i = 1; i <= 11; i++) {
   if (document.getElementById("fptxt"+i)) document.getElementById("fptxt"+i).style.display = "none";
   if (document.getElementById("fptxt"+i)) document.getElementById("link1").style.display = "none";
   }
   if (document.getElementById("fptxt"+n)) document.getElementById("fptxt"+n).style.display = "block";
   if (document.getElementById("link"+n)) document.getElementById("link"+n).style.display = "block";
  }
}

document.swz = new Switzer();
window.onload = function () { document.onmouseout = function () { document.swz.on(1) } }

 function meneValintaan(tama)
 {
  var u = tama.options[tama.selectedIndex].value;

         if (u.indexOf("portal") > -1)
   			window.location.href = u;
   		 else
   		 	window.open(u, "_blank");

   return true;
 }

