//<!--
/*************************************************************************************************************************************************************************\ 
* Please note that all or most scripts in this site that I downloaded from free sites have been changed to suit my own needs. Rather visit the original download site and * 
* get the unchanged, bug-free versions of these scripts. At this time I would also like to extend my gratitude to those people who created the scripts and post them free * 
* on their websites as tools to others. Originally a VB coder I tried my hand at HTML for a change in order to get this site up so any suggestions/help welcome. -drifter * 
\*************************************************************************************************************************************************************************/ 
//Attemt at breaking out of illegal frames\\
if (window != top) top.location.href = location.href;
//Trying to hide e-mail addresses from spam spiders - Original script from www.javascript.internet.com\\
function InsertAddress(aNumber, aAlias, aSubject, aTooltip) {
var aUserEmail = new Array();
var aDomainUrl = "stu" + "dio" + "j";
var aDomainExt = ".co" + ".z" + "a";
var i = 0;
var NewAddress = ""
aUserEmail[0] = "ja" + "y" + "son";
aUserEmail[1] = "jo" + "wilna";
aUserEmail[2] = "ed" + "ito" + "r";
aUserEmail[3] = "in" + "fo";
aUserEmail[4] = "dire" + "ct" + "ions";
aUserEmail[5] = "g" + "los" + "sarist";
aUserEmail[6] = "order" + "s";
aUserEmail[7] = "book" + "ings";
aUserEmail[8] = "bu" + "gs";
aUserEmail[9] = "web" + "mast" + "er";
aUserEmail[10] = "s" + "uppo" + "rt";
aUserEmail[11] = "fee" + "d" + "bac" + "k";
aUserEmail[12] = "s" + "ubs" + "cript" + "ions";
aUserEmail[13] = "pers" + "onnel" + "manager" + "r";
aUserEmail[14] = "beyond" + "the" + "lay" + "out";
aUserEmail[15] = "mat" + "black" + "box" + "set";
aUserEmail[16] = "arr" + "ange" + "ment" + "s";
aUserEmail[17] = "trans" + "crib" + "er";
NewAddress += '<a href="mailto:' + aUserEmail[aNumber] + '@' + aDomainUrl + aDomainExt + '?subject=' + aSubject + '" title="' + aTooltip + 
'">' + aAlias + '</a> ';
return NewAddress;}
//-->