
<!--
var timerID = null;
window.onerror = errorHandler;
var stText = "www.universalteacherpublications.com";

function errorHandler(){
	event.cancelBubble = true
	return true
}

function statusText(){
	window.status = stText;

}

function setTitleText(){
	//parent.document.title = stText;

}

function startMyTimer(){
timerID = setInterval("statusText()",25);
}

function startTitleTimer(){
timerID = setInterval("setTitleText()", 200);
}

function Start(page, wname) {
OpenWin = open(page, wname, "left=20,top=20,toolbar=no,menubar=no,location=no,scrollbars=yes,resizable=yes,width=500,height=300");
}

function tutorial(page, wname) {
OpenWin = open(page, wname, "left=2,top=2,toolbar=yes,menubar=no,location=no,scrollbars=yes,resizable=yes,width=795,height=595");
}

function winopener(page, wname) {
tempwin = open (page,wname,"left= 10,top=10, toolbar=yes,status=yes,menubar=yes,location=no,scrollbars=yes,resizable=yes,width=650,height=400");
}

function screens(page, wname) {
OpenWin = open(page, wname, "left=10,top=10,toolbar=no,menubar=yes,location=no,scrollbars=yes,resizable=yes,width=600,height=400");
}


document.onload = startMyTimer();

// End -->
