<!--
function open_window(url) {
	var Width = screen.width;
	var Height = screen.height;
	if (Width >= 800) {Width = 800;}
	else {Width=550;}
	if (Height >= 600) {Height = 600;}
	else {Height = 350;}
	sealWin = window.open(url,"win",'toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes,width=' + Width + ',height=' + Height);
}

function open_window2(url) {
	var Width=550;
	var Height=350;
	addrWin = window.open(url,"extwin",'toolbar=no,location=yes,directories=no,status=yes,menubar=no,scrollbars=yes,resizeable=yes,width=' + Width + ',height=' + Height);
}

function SwapImage(ImageName, NewImage)
{
	if (parseInt(navigator.appVersion) > 2) {
		var NewSrc = "http://www.toolbarn.com/images/navigation/" + NewImage;
		var NewImg = new Image(120,18);
		NewImg.src = NewSrc;
		for (var i=0; i < document.images.length; i++)
		{
			if (window.document.images[i].name == ImageName)
			{
				window.document.images[i].src = NewImg.src;
			}
		}
	}
}
//-->

<!-- Begin
var linkcount;
function checklinks() {
if (!(linkcount==document.links.length)) {
for (i=0; i < document.links.length; i++) {
if (document.links[i].id.substring(0,5)=="_goog") {
var tr = document.links[i].parentTextEdit.createTextRange();
tr.moveToElementText(document.links[i]);
tr.execCommand("Unlink",false);
tr.execCommand("Unselect",false);
}
}
}
setTimeout("checklinks()",500);
}
if (document.getElementById && document.createElement) {
linkcount=document.links.length;
setTimeout("checklinks()",500);
}


// End -->

