// JavaScript Document
function toggleLayer(whichLayer)
{
if (document.getElementById)
{
// this is the way the standards work
var tab1 = document.getElementById('solutionLinks').style;
tab1.display = "none";
var tab2 = document.getElementById('solutionLinksView').style;
tab2.display = "none";
var style2 = document.getElementById(whichLayer).style;
style2.display = "block";

}

}



