//fscommand
var InternetExplorer = navigator.appName.indexOf("Microsoft") != -1;
// Handle all the the FSCommand messages in a Flash movie
function menu_DoFSCommand(command, args) {
  var menuObj = InternetExplorer ? menu : document.menu;
  // Div control code...
  		if(command == "more") {
		document.getElementById("flashdiv").style.width=500;
		//document.all.flashdiv.style.visibility="hidden";
		} else if (command == "less") {
		//document.getElementById("flashdiv").style.width=202;
		document.all.flashdiv.style.width="202";
		}
  //
}
// Hook for Internet Explorer 
if (navigator.appName && navigator.appName.indexOf("Microsoft") != -1 && 
	  navigator.userAgent.indexOf("Windows") != -1 && navigator.userAgent.indexOf("Windows 3.1") == -1) {
	document.write('<SCRIPT LANGUAGE=VBScript\> \n');
	document.write('on error resume next \n');
	document.write('Sub menu_FSCommand(ByVal command, ByVal args)\n');
	document.write('  call menu_DoFSCommand(command, args)\n');
	document.write('end sub\n');
	document.write('</SCRIPT\> \n');
}
// fscommand ends
