<!--

function newImage(arg) {
	if (document.images) {
		rslt = new Image();
		rslt.src = arg;
		return rslt;
	}
}

function changeImages() {
	if (document.images && (preloadFlag == true)) {
		for (var i=0; i<changeImages.arguments.length; i+=2) {
			document[changeImages.arguments[i]].src = changeImages.arguments[i+1];
		}
	}
}

var preloadFlag = false;
function preloadImages() {
	document.forms['loginform'].login.focus();
	if (document.images) {
		index_10_o = newImage("images/index_10_o.jpg");
		index_17_o = newImage("images/index_17_o.jpg");
		index_39_o = newImage("images/index_39_o.jpg");
		index_47_o = newImage("images/index_47_o.jpg");
		preloadFlag = true;
	}
}
function notfound()
{
 	alert("Sorry, please wait a little. We are busy building TerraGame as quickly as we can");
}

function fokus()
{
	document.forms['loginform'].login.focus();
}
// -->
