﻿//Use this script to Show and/or Hide a div

function hidediv() { 
if (document.getElementById) { // DOM3 = IE5, NS6 
document.getElementById('text').style.display = 'none'; 
} 
else { 
if (document.layers) { // Netscape 4 
document.text.display = 'none'; 
} 
else { // IE 4 
document.all.text.style.display = 'none'; 
} 
} 
} 

function showdiv() { 
if (document.getElementById) { // DOM3 = IE5, NS6 
document.getElementById('text').style.display = 'block'; 
} 
else { 
if (document.layers) { // Netscape 4 
document.text.display = 'block'; 
} 
else { // IE 4 
document.all.text.style.display = 'block'; 
} 
} 
} 

//Insert the following code as a link to SHOW an id (it should have display:none)
//<a href="javascript:showdiv()">Text Here</a>

//Insert the following code as a link to HIDE an id (it should have display:block)
//<a href="javascript:showdiv()">Text Here</a>

