var searchvar = "Search";
var slid = 0;
function ShowMenu(menuId) {
	document.getElementById(menuId).className = "subnav";
}

function HideMenu(menuId) {
	document.getElementById(menuId).className = "hidden";
}

// Search Box CSS Class toggle functions.
function ToggleFocus() {
	if(document.getElementById("searchBox").value == searchvar) {
		document.getElementById("searchBox").value = "";
	}
}
function ToggleBlur() {
	if (document.getElementById("searchBox").value == "") {
		document.getElementById("searchBox").value = searchvar;
	}
}
function ShowShare() {
	document.getElementById("shareComponent").style.display = "block";
}

function HideShare() {
	document.getElementById("shareComponent").style.display = "none";
}

// Open chat window
function OpenChatWindow()
{
    var winHandle = window.open('/ChatLive.aspx','new_win','width=484,height=361');
    if(winHandle == null){
        alert('Cannot open chat window!\\r\\nPlease check your Popup Blocker Settings.');
    }
}