	function guide_opener(application,tutorial) {
	
	}

	function show(Layer,parent)
	{
		if(Layer != 'defaultID')
			hide('defaultID', parent);
		if (document.getElementById)
	{
		// this is the way the standards work
		var style2 = document.getElementById(Layer).style;
		style2.display = style2.display? "":"block";
		//style2.left = parent.style.left+100;
		//style2.top = parent.style.top+200;
	}
		else if (document.all)
	{
		// this is the way old msie versions work
		var style2 = document.all[Layer].style;
		style2.display = style2.display? "":"block";
		//style2.left = parent.style.left+100;
		//style2.top = parent.style.top+200;
	}
		else if (document.layers)
	{
		// this is the way nn4 works
		var style2 = document.layers[Layer].style;
		style2.display = style2.display? "":"block";
		//style2.left = parent.style.left+100;
		//style2.top = parent.style.top+200;
	}
	}
	
	function hide(Layer)
	{
		if(Layer != 'defaultID')
			show('defaultID', parent);
		if (document.getElementById)
	{
		// this is the way the standards work
		var style2 = document.getElementById(Layer).style;
		style2.display = style2.display? "":"none";
	}
		else if (document.all)
	{
		// this is the way old msie versions work
		var style2 = document.all[Layer].style;
		style2.display = style2.display? "":"none";
	}
		else if (document.layers)
	{
		// this is the way nn4 works
		var style2 = document.layers[Layer].style;
		style2.display = style2.display? "":"none";
	}
	}
