function centerLayer(){
	var contHeight = 586;
	var contWidth = 913;
	var w = 0;
	var h = 0;
	var appVer = navigator.appVersion.toLowerCase();
	var appNum = navigator.appVersion.substring(0,1);
	var appName = navigator.appName;
	var compName = "";

	if (appVer.indexOf("win")!=-1){
		compName="Win";
	}
	else if (appVer.indexOf("mac")!=-1){
		compName="Mac";
	} else {
		compName="?";
	}
	if (appName=="Netscape" && appNum==4){
		h = window.innerHeight;
		w = window.innerWidth;
		document.flashcontent.top = (h-contHeight)/2 +"px";
		document.flashcontent.left = (w-contWidth)/2 +"px";
	}
	else if (appName=="Netscape" && appNum>4){
		h = window.innerHeight;
		w = window.innerWidth;
		document.getElementById("flashcontent").style.top = (h-contHeight)/2 +"px";
		document.getElementById("flashcontent").style.left = (w-contWidth)/2 +"px";
	}
	else if (appName=="Microsoft Internet Explorer" && appNum>=4 && compName=="Win"){
		h = document.body.clientHeight;
		w = document.body.clientWidth;
		document.all.flashcontent.style.top = (h-contHeight)/2 +"px";
		document.all.flashcontent.style.left = (w-contWidth)/2 +"px";
	}
	else if (appName=="Microsoft Internet Explorer" && appNum>=4 && compName=="Mac"){
		h = document.body.clientHeight;
		w = document.body.clientWidth;
		document.all.flashcontent.style.top = (h-contHeight)/2 +"px";
		document.all.flashcontent.style.left = (w-contWidth)/2 +"px";
	}else{
		// No valid browser found..
	}
	posContact();
}