<!--

var IE = navigator.appName.indexOf("Microsoft") != -1;
var NS = navigator.appName.indexOf("Netscape") != -1;
var MAC = navigator.platform.indexOf("Mac") != -1;
var centerA1 = 275;

if (NS) onresize = resizeFix;



function posXY() {
	if (IE) {
		clientX = document.body.clientWidth;
		clientY = document.body.clientHeight;
		posX = clientX/2-centerA1;		
		posY = clientY/2-centerA1;
		if (posX < 10) posX = 10;
		if (posY < 10) posY = 10;
		document.all('a1').style.left = posX;
		document.all('a1').style.top = posY;
		if (MAC) {
			document.all('a1').style.height = 551;
			document.all('a1').style.height = 550;
		}
	}else if (NS) {	
	clientX = this.innerWidth;
		clientY = this.innerHeight;
		posX = clientX/2-centerA1;
		posY = clientY/2-centerA1;
		if (posX < 10) posX = 10;
		if (posY < 10) posY = 10;
		document.layers['a1'].left = posX;
		document.layers['a1'].top = posY;
		resizeFix();
	}
}
function resizeFix() { 
	if (NS) {
		if  (clientY != this.innerHeight || clientX != this.innerWidth) {
			location.reload();
			clientY = this.innerHeight;
   			clientX = this.innerWidth;
			posXY();
		}	
	setTimeout("resizeFix()", 100);	
	} 
}

//-->




