// JavaScript Document

function clearcodefield()
{
	if (document.SearchForm.SearchString.value == "Search" )
		document.SearchForm.SearchString.value = "";

}

function HideContentName(d) {
if(d.length < 1) { return; }
document.getElementById(d).style.display = "none";
}
function ShowContentName(d) {
if(d.length < 1) { return; }
var dd = document.getElementById(d);
AssignPositionName(dd);
dd.style.display = "block";
}
function ReverseContentDisplayName(d) {
if(d.length < 1) { return; }
var dd = document.getElementById(d);
if(dd.style.display == "none") { dd.style.display = "block"; }
else { dd.style.display = "none"; }
}


// Newsletter
function HideSubscribeName() {
document.getElementById('NewsSubscribeSwitcher').style.display = "none";
document.getElementById('NewsStorySwitcher').style.display = "block";
}
function ShowSubscribeName() {
document.getElementById('NewsSubscribeSwitcher').style.display = "block";
document.getElementById('NewsStorySwitcher').style.display = "none";
}


// Vote
function HideVote() {
document.getElementById('VoteHold').style.display = "block";
document.getElementById('ResultHold').style.display = "none";
}
function ShowVote() {
document.getElementById('VoteHold').style.display = "none";
document.getElementById('ResultHold').style.display = "block";
}