<!-- //Hide script
var isDHTML = 0;
var isID = 0;
var isLayers = 0;
var isAll = 0;
var brow = ((navigator.appName) + (parseInt(navigator.appVersion)));

if (document.all) {isAll = 1; isDHTML = 1; DOMType = "ieDOM";}
else {
	if (document.getElementById) {isID = 1; isDHTML = 1; DOMType = "w3cDOM";}
	else {
		if (document.layers) {isLayers = 1; isDHTML = 1; DOMType = "nsDOM";}
}}

function findLivePageHeight() {
	if (window.innerheight != null)
		return window.innerHeight;
	if (document.body.clientHeight != null)
		return document.body.clientHeight;
	return (null);
}

function findLivePageWidth() {
	if (window.innerWidth != null)
		return window.innerWidth;
	if (document.body.clientWidth != null)
		return document.body.clientWidth;
	return (null);
}

function findScrollLeft() {
	if (window.pageXOffset != null)
		return window.pageXOffset;
	if (document.body.scrollHeight != null)
		return document.body.scrollLeft;
	return (null);
}

function findScrollTop() {
	if (window.pageYOffset != null)
		return window.pageYOffset;
	if (document.body.scrollWidth != null)
		return document.body.scrollTop;
	return (null);
}

//Note:  for NS only
var scrollx, scrolly;
function init(){
	scrollx = window.scrollX;
	scrolly = window.scrollY;
	setInterval(testScroll,10);
}
function testScroll(){
	if(scrollx != window.scrollX || scrolly != window.scrollY){
		scrollx = window.scrollX;
		scrolly = window.scrollY;
//		placethelogo();
		div = document.getElementById("floaterdiv");
		div.style.left = (livePageWidth - 275);
		div.style.top = (livePageHeight - 96 + scrolly);
	}
}
// end NS code

function placethelogo() {
	livePageHeight = findLivePageHeight();
	livePageWidth = findLivePageWidth();
	scrollLeft = findScrollLeft();
	scrollTop = findScrollTop();
	switch(DOMType) {
	case 'w3cDOM':
		setInterval(testScroll,10);
		break;
	case 'ieDOM':
		document.all.floaterdiv.style.left = (livePageWidth - 248 + scrollLeft);
		document.all.floaterdiv.style.top = (livePageHeight - 69 + scrollTop);
		break;
	case 'nsDOM':
		document.layers.floaterdiv.left = (livePageWidth - 270);
		document.layers.floaterdiv.top = (livePageHeight - 90);
		break;
}
}	

//-->