<!--
	function noSpam(user,domain) {
	locationstring = "mailto:" + user + "@" + domain;
	window.location = locationstring;
	}


function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}
   
function getObjRef(id) {
  if(document.getElementById) { return document.getElementById(id); }
  if(document.all) { return document.all[id]; }
}

/*
This works in Firefox, Netscape 6+, IE4+, Opera 7+, Konqueror 3, Safari, and 
IE5/Mac.
*/
function other(selected) { //selected is the selected option

  var el = getObjRef('hidden'); //gets the object reference for the elemen
   var val = selected.value.toLowerCase();
  if(val == 'other') { //if val is set to 'customoption' show the textbox
    el.style.display='block';
  } else {  //else hide it or keep it hidden.
    el.style.display='none';
  }
}


var theLetters = new Array() 

theLetters[0] = 'U'
theLetters[1] = 'V'

var whichLetter = Math.floor(Math.random()*(theLetters.length));
function showVersion(){
document.write('<a href="https://ssl.drgnetwork.com/ecom/tms/app/live/promosub?org=tms&publ=CG&key=IUX000'+theLetters[whichLetter]+'"><img src="/images/subscribeTopRight_'+theLetters[whichLetter]+'.gif" height="200" width="300" border="0"></a>');
}
   
-->