<!--

/* http://www.technorealm.co.uk/scripts/mouseovershowtext.html 

Homepage hidden text

*/

function toggleDiv(id,flagit) {

if (flagit=="1"){

if (document.layers){

 document.layers[''+id+''].visibility = "show";

 document.layers[''+id+''].display = "inline";

 }

else if (document.all)

{ document.all[''+id+''].style.visibility = "visible";

document.all[''+id+''].style.display = "inline";

}

else if (document.getElementById){ 

document.getElementById(''+id+'').style.visibility = "visible";

document.getElementById(''+id+'').style.display = "inline";

}

}

else

if (flagit=="0"){

if (document.layers)

{

 document.layers[''+id+''].visibility = "hide";

 document.layers[''+id+''].display = "none";

 }

else if (document.all)

{

 document.all[''+id+''].style.visibility = "hidden";

 document.all[''+id+''].style.display = "none";

 }

else if (document.getElementById)

{

 document.getElementById(''+id+'').style.visibility = "hidden";

 document.getElementById(''+id+'').style.display = "none";

 }

}

}



//Image swap for homepage wizard (help) button

Image1= new Image(148,31)

Image1.src = "generic-images/gmiwizard.jpg"

Image2 = new Image(148,31)

Image2.src = "generic-images/gmiwizard_on.jpg"



function SwapOut() {

document.gmiwizard.src = Image2.src; return true;

}



function SwapBack() {

document.gmiwizard.src = Image1.src; return true;

}

//-->
