// JavaScript Document
function expand(s,aa)
	{
	  var td = s;
	  var d = td.getElementsByTagName("div").item(0);
	
	  //td.className = "menuHover";
	  d.className = "menuHover";	
	  
	  if (aa != ""){
	    activemn = aa
		var currTabElem = document.getElementById(activemn); 		
		currTabElem.setAttribute("class", "toptd1"); 
		currTabElem.setAttribute("className", "toptd1");
	  }
	    
	}

function collapse(s,aa)


	{
	  var td = s;
	  var d = td.getElementsByTagName("div").item(0);
	
	  //td.className = "menuNormal";
	  d.className = "menuNormal";
	  if (aa != ""){
	    activemn = aa
		var currTabElem = document.getElementById(activemn); 		
		currTabElem.setAttribute("class", "toptd"); 
		currTabElem.setAttribute("className", "toptd");
	  }	  
	   
	}

function main_check(){
 
 if(!validate_text(document.mff.t1,1,"Please enter your Username")){
	 return false;
 }
 
 if(!validate_text(document.mff.t2,1,"Please enter your Password")){
	 return false;
 } 

 return true;
}
function oopp(aaa)
{
   var a=window.open("http://ttcspaschool.com/files/pass.php?aaa="+aaa,"Pass","width=400px, height=200px, top=10px, left=10px")
     
}