function popUp(URL) {
	window.open(URL, 'pop', 'toolbar=0,scrollbars=1,location=0,statusbar=1,menubar=1,resizable=1,width=400,height=300');
}
function dToggle(tElm)
{
	if (document.getElementById)
	{
		var s = document.getElementById(tElm).style;
		s.display = s.display ? "" : "block";
	}
	else if (document.all)
	{
		var s = document.all[tElm].style;
		s.display = s.display ? "" : "block";
	}
	else if (document.layers)
	{
		var s = document.layers[tElm].style;
		s.display = s.display ? "" : "block";
	}
}

