//BOOKMARK
function bookmark(url) {
	var netscape="First push OK and then hit CTRL+D to add a bookmark to this site."
	if (navigator.appName=='Microsoft Internet Explorer') {
		window.external.AddFavorite(url, document.title);
	}
	else if (navigator.appName=='Netscape') {
		alert('Press (Ctrl+D) To Bookmark This Page.');
	}
}	

function printerfriendly() {
	if(window.screen) { var sw = window.screen.width; var sh = window.screen.height; } else { sw = 800; sh = 600; }
	var ww = 800; var wx = Math.floor((sw - ww) / 2);
	var wh = 600; var wy = Math.floor((sh - wh) / 2);
	var win = window.open("","win","scrollbars=yes,menubar=yes,status=no,toolbar=no,location=no,resize=yes,width="+ww+",height="+wh);
	with(win) {
		location = "?print";
		moveTo(wx, wy);
		resizeTo(ww, wh);
		focus();
	}
}

function emailcolleague() {
	if(window.screen) { var sw = window.screen.width; var sh = window.screen.height; } else { sw = 800; sh = 600; }
	var ww = 530; var wx = Math.floor((sw - ww) / 2);
	var wh = 500; var wy = Math.floor((sh - wh) / 2);
	var win = window.open("","win","scrollbars=no,menubar=no,status=no,toolbar=no,location=no,resize=yes,width="+ww+",height="+wh);
	win.location = "/contactus/toolbox.email_colleague.cfm?page=" + escape(location.href);
	win.moveTo(wx, wy);
	win.resizeTo(ww, wh);
	win.focus();
}				

// FRAME BUSTER
if (top.frames.length!=0) top.location=self.document.location;		

