	function show(obj)
  	{
	  	obj.style.display="block";

	 	
   }
	function hide(obj)
  {
	  	obj.style.display="none";
	 	
  }
	var element = null;
	function showsub(id)
  {
	 if(element) hide(element);
	 element = document.getElementById(id);
	 if(element)
		{
		  	show(element);
		}
  }
  function goober(str)
  {
  try
  {
	document.getElementById("minicartFRAME").contentWindow.location.reload();
  	//document.frames("minicartFRAME").history.go(0);
  }
  catch(e)
  {
  	alert(e.description);
  }
  }
