t = navigator.appVersion;
if ((t.indexOf("Mac") != -1)){
	u = t.indexOf('MSIE');
	v = parseInt(t.substring(u + 5));
		if (u != -1 && v >= 4){
		document.write(' ')
		}
	}

var screenWidth = 0;

if (document.all != null) {
	screenWidth = document.body.offsetWidth - 765;
} else if ((navigator.appName == 'Netscape') && (document.layers != null)) {
	screenWidth = window.innerWidth - 765;
}
		
if (screenWidth >= 0) {
	screenMargin = screenWidth / 2;
} else {
	screenMargin = 0;
}

document.write('<div id="outer" style="position: absolute; left: ' + screenMargin + 'px; top: 5px; z-index: 1">');

window.defaultStatus = 'Happy Online';

function sendToAFriend() {
        var pn = document.location.href;
        
window.open("/contact/index.htm?"
+ pn,"","toolbar=no,scrollbars=no,width=480,height=520,noresize");

}