function HideContent(d) {
	if(d.length < 1) { return; }
	document.getElementById(d).style.display = "none";
}

function ShowContent(d) {
	if(d.length < 1) { return; }
	document.getElementById(d).style.display = "";
}

function ReverseContentDisplay(d) {
	if(d.length < 1) { return; }
	if(document.getElementById(d).style.display == "none") { document.getElementById(d).style.display = ""; }
	else { document.getElementById(d).style.display = "none"; }
}

var newwindow;
function poptastic(url)
{
	newwindow=window.open(url,'name','height=700,width=700,left=100,top=100,resizable=yes,scrollbars=no,toolbar=no,status=no');
	if (window.focus) {newwindow.focus()}
}