// JavaScript Document<!--function TG_swapImgRestore() { //v3.0  var i,x,a=document.TG_sr; for(i=0;a&&i<a.length&&(x=a[i])&&x.oSrc;i++) x.src=x.oSrc;}function TG_preloadImages() { //v3.0  var d=document; if(d.images){ if(!d.TG_p) d.TG_p=new Array();    var i,j=d.TG_p.length,a=TG_preloadImages.arguments; for(i=0; i<a.length; i++)    if (a[i].indexOf("#")!=0){ d.TG_p[j]=new Image; d.TG_p[j++].src=a[i];}}}function TG_findObj(n, d) { //v4.01  var p,i,x;  if(!d) d=document; if((p=n.indexOf("?"))>0&&parent.frames.length) {    d=parent.frames[n.substring(p+1)].document; n=n.substring(0,p);}  if(!(x=d[n])&&d.all) x=d.all[n]; for (i=0;!x&&i<d.forms.length;i++) x=d.forms[i][n];  for(i=0;!x&&d.layers&&i<d.layers.length;i++) x=TG_findObj(n,d.layers[i].document);  if(!x && d.getElementById) x=d.getElementById(n); return x;}function TG_swapImage() { //v3.0  var i,j=0,x,a=TG_swapImage.arguments; document.TG_sr=new Array; for(i=0;i<(a.length-2);i+=3)   if ((x=TG_findObj(a[i]))!=null){document.TG_sr[j++]=x; if(!x.oSrc) x.oSrc=x.src; x.src=a[i+2];}}// modified to handle both formmail and multiple email addressesfunction noSpam() {	var link = noSpam.arguments[0]; // text for the link	var subject = noSpam.arguments[1]; // if there's a subject line to the message	var myat = String.fromCharCode(64);   // @	var mydot = String.fromCharCode(46);  // .	var addr = '';	// starting from the third argument,	// read the segments and build the address:	var i;	var position = 0; // used to check progress to add @ dot comma	for (i = 2; i < noSpam.arguments.length; i++) {		if (position == 3) { // must be another email address so reset this and add comma			position = 0;			addr += ',';		}		if (position) {			// check whether this element (any but the first)			// comes after the @ or a dot:			addr += (position == 1) ? myat : mydot;		}		addr += noSpam.arguments[i];		position++;	}	var str = '';	if (link) {		if (link== 'formmail') {			// you could break this down further so that			// the 'recipient' is less apparent:			str = '<INPUT TYPE=hidden NAME="recipient" VALUE="';						str += addr;			str += '">';		}		else {			// you could break this down further so that			// the 'mailto' is less apparent:			str = '<a href="mailto:' + addr;						if (subject) {				// code to display the subject				str += '?subject=' + subject;			}						str += '">';				// if the first argument was literally 'addr', the text for the link			// is the address itself, otherwise it's the text of the argument:			str += (link == 'addr') ? addr : link;						str += '<\/a>';  // close the tag		}	}	else {		// if the first argument is '' just print the address		// without making it a link at all:		str = addr;	}	document.write (str);}//-->