<!--
	function newSize_PS(W,H,X,Y) {
		//window.status = FlashPos +' '+ X +' '+ NewX;
		
		if (document.all && !document.getElementById) {
			document.all['pspd'].style.pixelWidth = W;
			document.all['pspd'].style.pixelHeight = H;
			document.all['pspd'].style.left = X;
			document.all['pspd'].style.top = Y;		
		} else if (self.innerWidth) {
			document.getElementById('pspd').style.width = W;
			document.getElementById('pspd').style.height = H;
			document.getElementById('pspd').style.left = X+"px";
			document.getElementById('pspd').style.top = Y+"px";
		} else {
			document.getElementById('pspd').style.width = W;
			document.getElementById('pspd').style.height = H;
			document.getElementById('pspd').style.left = X;
			document.getElementById('pspd').style.top = Y;
		}
	}

	function pspd_DoFSCommand(command, args) {  
		if (command == "newSize_PS") { 
			var ArgsNS = args.split(",");
			newSize_PS(ArgsNS[0],ArgsNS[1],ArgsNS[2],ArgsNS[3]);
		}
	}
//-->