<!--
	function newSize(W,H,X,Y) {
		if(document.all && !document.getElementById) {
			document.all['ASA'].style.pixelWidth = W;
			document.all['ASA'].style.pixelHeight = H;
			document.all['ASA'].style.left = X+"px";
			document.all['ASA'].style.top = Y+"px";
		} else{
			document.getElementById('ASA').style.width = W;
			document.getElementById('ASA').style.height = H;
			document.getElementById('ASA').style.left = X-5;
			document.getElementById('ASA').style.top = Y-5;
		}
	}
	function EDC_Flash_DoFSCommand(command, args) {  
		if (command == "newSize") { 
			var ArgsNS = args.split(",");
			newSize(ArgsNS[0],ArgsNS[1],ArgsNS[2],ArgsNS[3]);
		}
	}
//-->



