<!--
// eMail Obfuscator Script 2.1 by Tim Williams - freeware
// http://www.u.arizona.edu/~trw/spam/spam4.htm
function drh6xc(coded,cipher)
{
 	//coded = "1lzc1@1lz1.jvt"
	//	cipher = "aZbYcXdWeVfUgThSiRjQkPlOmNnMoLpKqJrIsHtGuFvEwDxCyBzA1234567890"
		shift=coded.length
		link=""
		for (i=0; i<coded.length; i++){
			if (cipher.indexOf(coded.charAt(i))==-1){
				ltr=coded.charAt(i)
				link+=(ltr)
			}
			else {     
				ltr = (cipher.indexOf(coded.charAt(i))-shift+cipher.length) % cipher.length
				link+=(cipher.charAt(ltr))
			}				
    }
			document.write("<a class='link' href='mailto:"+link+"'>" + link + "</a>")
    }

    function drh8xc(coded,cipher,string, css)
{
 	//coded = "1lzc1@1lz1.jvt"
	//	cipher = "aZbYcXdWeVfUgThSiRjQkPlOmNnMoLpKqJrIsHtGuFvEwDxCyBzA1234567890"
		shift=coded.length
		link=""
		for (i=0; i<coded.length; i++){
			if (cipher.indexOf(coded.charAt(i))==-1){
				ltr=coded.charAt(i)
				link+=(ltr)
			}
			else {     
				ltr = (cipher.indexOf(coded.charAt(i))-shift+cipher.length) % cipher.length
				link+=(cipher.charAt(ltr))
			}				
    }
			document.write("<a class='" + css +"' href='mailto:"+link+"'>" + string + "</a>")
    }
    
function Popup(wPage,wID,wWidth,wHeight,wScrollbars,wLocation,wToolbar,wStatus,wResizable) {
	if (!wID) { wID = "Popup" }
	if (!wWidth) { wWidth = 400 }
	if (!wHeight) { wHeight = 260 }
	if (!wScrollbars) { wScrollbars = "yes" }
	if (!wLocation) { wLocation = "no" }
	if (!wToolbar) { wToolbar = "no" }
	if (!wStatus) { wStatus = "no" }
	if (!wResizable) { wResizable = "yes" }
	popupWindow = window.open(wPage,wID,"width=" + wWidth + ",height=" + wHeight + ",scrollbars=" + wScrollbars + ",location=" + wLocation + ",toolbar=" + wToolbar + ",status=" + wStatus + ",resizable=" + wResizable)
	if (window.focus) { popupWindow.focus() }
}
//-->