// JavaScript Document
// manualShowHide

var show = false

if (show) dType = 'inline'
else dType = 'none'
document.write('<style type="text/css">')
var a ='#showHide {display: '+dType+';}'
document.write(a)
document.write('</style>')

function buttonUp() {
mServer = window.location.host
if (mServer.toUpperCase().indexOf("AMPLIFY") != -1) 
	url = "http://"+mServer+"/logs/GoogleLog.cfm"
else {
	mPort = window.location.port
	if (mPort == "") mServer = mServer+":8501"
	url = "http://"+mServer+"/logs/GoogleLog.cfm"
}
dr = document.referrer
if (dr == "") dr = '/none'
url = url+"?ref="+dr+"&site=nIn-tel"
document.write(' <img border=0 height=1 width=1 src="' + url + '">');
}
