function jsOpenWindow(filename, width, height)
{
        window.open(filename,"Test",
        "toolbar=no,width=" + width + ",height=" + height + ",directories=no,status=yes,location=no,scrollbars=yes,resizable=yes,menubar=no");
}

function Link(s)
{
  window.self.location.href = s.options[s.selectedIndex].value;
}

function Disable()
{
  if (event.button == 2) 
  {
    alert("All images on this website are copyrighted and may not be used without express written consent of Smoky Mountain Metal Arts.");
  }
}

function CloseWindow()
{
  window.close();
  window.opener.location=window.opener.location.pathname;
}


// Function for Expanding and Contracting the Messenger Groups

function displaySubs(the_sub)
{
  if (document.getElementById(the_sub).style.display=="")
  {
    document.getElementById(the_sub).style.display = "none";
	document.getElementById("img" + the_sub).src = "../images/expand.gif";
	return
  }
  else
    document.getElementById("img" + the_sub).src = "../images/contract.gif";

  document.getElementById(the_sub).style.display = "";
}

function fnAddToCart(varLocation)
{
  this.ShoppingCart.location = varLocation;
}
