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