
	function confirmAndGo(msg)
	{
		var result = confirm(msg);
		if (result==true)
			return true;
		else
			return false;
	}

	function showDiv(strId)
	{
		document.getElementById(strId).style.display="inline"; 
	}

	function hideDiv(strId)
	{
		document.getElementById(strId).style.display="none"; 
	}

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


