// JavaScript Document<SCRIPT LANGUAGE="JavaScript">
function SwitchVis(ElementId)
{
	var el = document.getElementById(ElementId)
	if( el.style.display == "none" )
		el.style.display = "block";
	else
		el.style.display = "none";
}

function popUp(url)
{
	var width = 404;
	var height = 390;
	var left = parseInt(screen.availWidth / 2 - width / 2);
	var top = parseInt(screen.availHeight /2 - height / 2);
	left = 100;
	top = 100;
	var windowprop = "width=" + width + ",height=" + height + ",left=" + left + ",top=" + top + ",screenX=" + left +
					 ",screenY=" + top;
	var wnd = window.open(url, "subWind", windowprop);

}