xPos = 599
yPos = 239
layerWidth = 151
bgcolor = "368faf"
bordercolor= "ffffff"

popUp = new Array()
popUp[1] = "&quot;Physical operations. Culture. People. We'll help you manage your organization in the midst of great change.&quot;<br></b><div align=right>&#151;P. Henriques</div>"
popUp[2] = "&quot;We take the time to understand your business drivers.  We transition your organization with minimal interruption.&quot;<br></b><div align=right>&#151;R. Stvan</div>"
popUp[3] = "&quot;&quot;<br></b><div align=right></div>"
popUp[4] = "&quot;Senior facility and administrative managers have critical, ongoing responsibilities.  It's rare to find a manager that can meet those responsibilities while planning and executing a major move.&quot;<br></b><div align=right>&#151;D. Pappas</div>"
popUp[5] = "&quot;We do every day what most managers only experience every 5 to 10 years.&quot;<br></b><div align=right>&#151;T. Spivey</div>"

content_pre = "<table border=0 cellpadding=1 cellspacing=0 width=" + layerWidth + "><tr><td bgcolor=" + bordercolor + "><table border=0 cellpadding=8 cellspacing=0 width=100%><tr><td  bgcolor=" + bgcolor + " class=whitef><b>"
content_suf = "<\/td><\/tr><\/table><\/td><\/tr><\/table>"

for (x=1; x<popUp.length; x++) {
	if (document.layers) {
		document.write('<layer id="quote' + x + '" width=' + layerWidth + ' top=' + yPos + ' left=' + xPos + ' z-index=' + (x + 1) + ' visibility=hide>' + content_pre + popUp[x] + content_suf + '<\/layer>')
	}
	if (document.getElementById || navigator.appName.indexOf("Microsoft Internet Explorer") > -1) {
		document.write('<div id="quote' + x + '" style="position: absolute; width: ' + layerWidth + 'px; top:' + yPos + 'px; left:' + xPos + 'px; z-index: ' + (x + 1) + '; visibility: hidden;">'+ content_pre + popUp[x] + content_suf + '<\/div>')
	}
}

function popLayer(layer) {
	if (document.getElementById) {
		document.getElementById(layer).style.top = yPos
		document.getElementById(layer).style.left = xPos
		document.getElementById(layer).style.visibility = "visible"
	} else if (document.layers) {
		document.layers[layer].top = yPos
		document.layers[layer].left = xPos
		document.layers[layer].visibility = "show"
	} else if (document.all && !document.getElementById) {
		document.all[layer].style.top = yPos
		document.all[layer].style.left = xPos
		document.all[layer].style.visibility = "visible"
	}
	active = true
}

function dropLayer(layer) {
	if (document.getElementById) {
		document.getElementById(layer).style.visibility = "hidden"
	} else if (document.layers) {
		document.layers[layer].visibility = "hide"
	} else if (document.all) {
		document.all[layer].style.visibility = xPos + "hidden"
	}
	active = false		
}		


