// JavaScript Document
<!--
function init() {
	blurbs(0);
	showImage();
	//tdcolorchange();
}

function popup(url, theWidth, theHeight)
{
	//var theWidth = 800;
	//var theHeight = 500;
LeftPosition = (screen.width) ? (screen.width-theWidth)/2 : 0;
TopPosition = (screen.height) ? (screen.height-theHeight)/2 : 0;
	popWin=window.open(url,"newWindow","height=" + theHeight + ",width=" + theWidth + ",left=" + LeftPosition + ",top=" + TopPosition + ",toolbar=no,location=no,resizable=no,menubar=no,status=no,titlebar=no,scrollbars=yes");
	
	popWin.window.focus();
}

function popupsmall(url, theWidthsmall, theHeightsmall)
{
	var theWidthsmall = 470;
	var theHeightsmall = 380;
LeftPosition = (screen.width) ? (screen.width-theWidthsmall)/2 : 0;
TopPosition = (screen.height) ? (screen.height-theHeightsmall)/2 : 0;
	popWinsmall=window.open(url,"_blank","height=" + theHeightsmall + ",width=" + theWidthsmall + ",left=" + LeftPosition + ",top=" + TopPosition + ",toolbar=no,location=no,resizable=no,menubar=no,status=no,titlebar=no,scrollbars=no");
	
	popWinsmall.window.focus();	
}
//-->