//\//////////////////////////////////////////////////////////////////////////////////
//\  Hide/Show Content 1.0  --  This notice must remain untouched at all times.
//\  Copyright ONLINEMEDIADESIGNS.COM 2004-2006. All rights reserved.
//\
//\  Please give credit on sites that use Hide Content/Show 1.0 and submit changes of the script
//\  so other people can use them as well. This script is free to use, don't abuse.
//\//////////////////////////////////////////////////////////////////////////////////

<!--
function HideContent(d) {
document.getElementById(d).style.display = "none";
}
function ShowContent(d) {
document.getElementById(d).style.display = "block";
}
function ReverseDisplay(d) {
if(document.getElementById(d).style.display == "none") { document.getElementById(d).style.display = "block"; }
else { document.getElementById(d).style.display = "none"; }
}

//  End -->

