function show(divid)
{
	if(document.getElementById(divid).style.display == "inline")
	{
		document.getElementById(divid).style.display = "none";
	}
	else
	{
		document.getElementById(divid).style.display = "inline";
	}
}

function newWindow(Url, width, height, name)
{
	var X = screen.width / 2 - 205;
	var Y = screen.height / 2 - 195;
	Window = window.open(Url, name, "width=" + width + ", height=" + height + ", left=" + X + ",top=" + Y);
	Window.focus();
}
