	function getURL()
	{
		var whereYouAt = window.location.href;
  		// Next, split the url by the ?
  		var qparts = whereYouAt.split("?");
		// Check that there is a querystring, return "" if not
		if (qparts.length == 0)
		{
			return "";
		}
		// Then find the querystring, everything after the ?
  		var query = qparts[1];
		//return query;
		
		if (query == 'Done'){
		location.href = "#System";
		toggleDiv('hide1',1);
		toggleDiv('hide2',0);
		}
	}
	
	function show()
	{
	if (getURL() == 'Done'){
		toggleDiv('hide1',1);
		}
	}
	
	function toggleDiv(id,flagit) {
	if (flagit=="1")
	{
		if (document.layers) document.layers[''+id+''].visibility = "show"
		else if (document.all) document.all[''+id+''].style.visibility = "visible"
		else if (document.getElementById) document.getElementById(''+id+'').style.visibility = "visible"
		}
		else
		if (flagit=="0"){
		if (document.layers) document.layers[''+id+''].visibility = "hide"
		else if (document.all) document.all[''+id+''].style.visibility = "hidden"
		else if (document.getElementById) document.getElementById(''+id+'').style.visibility = "hidden"
		}
	}
