function blurIt() {	if(this.blur)this.blur();}function blurLinks() {	links = document.getElementsByTagName("A");	for (i = 0; i < links.length; i++) {		links[i].onclick = blurIt;		//links[i].onfocus = blurIt;	}}function resizeWindow() {	x = 576;	y = 416;	if (screen) {		x = screen.availWidth;		y = screen.availHeight;	}	if (x > 1024) {		x = 1024;	}	if (y > 768) {		y = 768;	}	window.moveTo(0,0);	window.resizeTo(x,y);}function changeBackgroundImage(backgroundImage){	if (document.body){		document.body.background = backgroundImage;	}}function changeBackgroundImageDelay(backgroundImage){	if (document.body){		document.body.background = backgroundImage;	}}