// ENKODED EMAIL SCRIPT
//<![CDATA[
function hiveware_enkoder(){var i,j,x,y,x=
"x=\"783d2230783d5c22676e656335646c2e783336363c693b353632303d6937383628726f" +
"303231663b27366333273d793232383b5c5c5c223235366233303437393362333632373932" +
"3237376532653332343731366665363532633336643664366635373336797d3666363b2929" +
"34365c5c322c695c223d78287274326536736275663633732e783765362b27253536382728" +
"6536313670616338363373656e373936753d2b633631797b5c223630343b793d6636632727" +
"3b366336666f7235363828693d366133303b696636343c782e3763366c656e393631677468" +
"3664363b692b3232333d3533366532297b666536666f72283633376a3d4d65363561746836" +
"38362e6d693136386e28783633372e6c653936636e6774363136682c693034662b35333663" +
"36293b2d6336352d6a3e3638363d693b653332297b793263352b3d786436662e6368363336" +
"61724165293274286a3d2b69293b7d3b68747d793b223b6a3d6576616c28782e6368617241" +
"74283029293b783d782e7375627374722831293b793d27273b666f7228693d303b693c782e" +
"6c656e6774683b692b3d36297b792b3d782e73756273747228692c33293b7d666f7228693d" +
"333b693c782e6c656e6774683b692b3d36297b792b3d782e73756273747228692c33293b7d" +
"793d792e737562737472286a293b\";y='';for(i=0;i<x.length;i+=2){y+=unescape('" +
"%'+x.substr(i,2));}y";
while(x=eval(x));}
//]]>


//TOGGLE DIV FUNCTIONS
/*
function hideLayer(whichLayer) {
if (document.getElementById) {
// this is the way the standards work
document.getElementById(whichLayer).style.visibility = "hidden";
}
else if (document.all) {
// this is the way old msie versions work
document.all[whichlayer].style.visibility = "hidden";
}
else if (document.layers) {
// this is the way nn4 works
document.layers[whichLayer].visibility = "hidden";
}
}

function showLayer(whichLayer) {
if (document.getElementById) {
// this is the way the standards work
document.getElementById(whichLayer).style.display = "block";
}
else if (document.all) {
// this is the way old msie versions work
document.all[whichlayer].style.display = "block";
}
else if (document.layers) {
// this is the way nn4 works
document.layers[whichLayer].display = "block";
}
}

function revealLayer(whichLayer) {
if (document.getElementById) {
// this is the way the standards work
document.getElementById(whichLayer).style.visibility = "visible";
}
else if (document.all) {
// this is the way old msie versions work
document.all[whichlayer].style.visibility = "visible";
}
else if (document.layers) {
// this is the way nn4 works
document.layers[whichLayer].visibility = "visible";
}
}

function handleClick(whichClick) {
if (whichClick == "show press") {
showLayer("subnav_shell");
revealLayer("subnav-press"); 
hideLayer("subnav-bookart");
hideLayer("subnav-art");
}

if (whichClick == "show book") {
showLayer("subnav_shell");
revealLayer("subnav-bookart"); 
hideLayer("subnav-press");
hideLayer("subnav-art");
}

if (whichClick == "show art") {
showLayer("subnav_shell");
revealLayer("subnav-art"); 
hideLayer("subnav-press");
hideLayer("subnav-bookart");
}

}

// POP-UP WINDOW FUNCTION

window.onload = function() {
  if (!document.getElementsByTagName) return false;
  var lnks = document.getElementsByTagName("a");
  for (var i=0; i<lnks.length; i++) {
    if (lnks[i].getAttribute("class") == "popup") {
      lnks[i].onclick = function() {
        popUp(this.getAttribute("href"));
        return false;
      }
    }
  }
}

function popUp(winURL) {
  window.open(winURL,"popup","width=350,height=480");
}
*/