var complinkshidden=true;
var mathlinkshidden=true;
var writelinkshidden=true;
var chemlinkshidden=true;
var physicslinkshidden=true;
var biologylinkshidden=true;
var firstTestimonials=true;
var first=true;
function computersLinkClicked()
{  if(complinkshidden)
   {    complinkshidden=false
	document.getElementById("CompSubjects").style.display='block'
        document.getElementById("computers").title="click to close" 
        document.getElementById("compIcon").src="/LandingPages/Images/PassThatClass/minus.gif"
   }
   else 
   {
       complinkshidden=true
       document.getElementById("CompSubjects").style.display='none'
       document.getElementById("computers").title="click to open"
       document.getElementById("compIcon").src="/LandingPages/Images/PassThatClass/plus.gif"  
   }

}
function mathLinkClicked()
{   if(mathlinkshidden)
    {   mathlinkshidden=false
        document.getElementById("mathSubjects").style.display='block'
        document.getElementById("math").title="click to close" 
        document.getElementById("mathIcon").src="/LandingPages/Images/PassThatClass/minus.gif"
    }
    else 
    {
       mathlinkshidden=true
       document.getElementById("mathSubjects").style.display='none'
       document.getElementById("math").title="click to open"
       document.getElementById("mathIcon").src="/LandingPages/Images/PassThatClass/plus.gif"  
    }
}
function writeLinkClicked()
{   if(writelinkshidden)
    {   writelinkshidden=false
        document.getElementById("writeSubjects").style.display='block'
        document.getElementById("write").title="click to close" 
        document.getElementById("writeIcon").src="/LandingPages/Images/PassThatClass/minus.gif"
    }
    else 
    {
       writelinkshidden=true
       document.getElementById("writeSubjects").style.display='none'
       document.getElementById("write").title="click to open"
       document.getElementById("writeIcon").src="/LandingPages/Images/PassThatClass/plus.gif"  
    }
}
function testimonials()
{   if (firstTestimonials)
    {   document.getElementById("firstTest").style.display='none'
        document.getElementById("secondTest").style.display='block'
        firstTestimonials=false 
    }
    else 
    {   document.getElementById("firstTest").style.display='block'
        document.getElementById("secondTest").style.display='none'
        firstTestimonials=true
    }
     
}
function Focuse(txtArea)
{   
    if (first)
    {   first = false;
	    txtArea.value = "";
    }
}