function doSetFLASH()
{
	var pW=document.body.clientWidth;
	var pH=document.body.clientHeight;
	var oFlash=document.getElementById("flashPlayer");
	var oflashShow=document.getElementById("flashShow");
	oFlash.style.height=pH-60;
	oFlash.style.width=pW;
	var iLeftMaring=(pW-1600)/2;
	var iTopMaring=(pH-60-1000)/2;
	oflashShow.style.margin=iTopMaring+"px 0px 0px "+iLeftMaring+"px";
}
doSetFLASH();
window.onresize =function(){doSetFLASH();}