/* anti-spam email obfuscation */
function eml_link()
{
	var args = eml_link.arguments;
	w = (args.length==0 ? 2 : args[0] );
	var a = new Array();
	a[0] = "o";
	a[2] = "inf";
	a[1] = "ie";
	a[3] = "sus";
	var dt = ".";
	var d1 = "uit";
	var aht = "@";
	var d2 = "relaxint";
	var d = aht + d2 + d1 + dt + "co"+"m";
	document.write(a[w]+a[w-2]+d);
}

/* simple show-hide functions for the boxes on the product info page (tape.asp) */
var boxes = new Array('privacy_returns'
                    , 'shipping_info'
                    , 'pricing_specials'
                    , 'wholesale_book_trade'
                    , 'synopsis'
                    , 'different'
                    , 'who_listens'
                    , 'workplace_stress');
function hideAll()
{
  for (var i = 0; i < boxes.length; i++)
  {
    var div = document.getElementById(boxes[i]); 
    div.style.display = 'none'; 
  }
  return false;
}

function showBox(name)
{
  for (var i = 0; i < boxes.length; i++)
  {
    var div = document.getElementById(boxes[i]); 
    if (div.id == name)
      div.style.display = 'block'; 
    else
      div.style.display = 'none'; 
  }
  return false;
}