<!--
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;
  //
  // Place your code here...
  //
	location.href=command+".php";
}
// 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');
}
//-->
wOk = 0;
hOk = 0;
if (screen) {
	if (screen.width) {
		currentWidth = screen.width;
		wOk = 1;
	}
	if (screen.height) {
		currentHeight = screen.height;
		hOk = 1;
	}
}

if (wOk && hOk) {
	change = 0;
	if (currentWidth < 800) {
		currentWidth = 800;
		change = 1;
	}
	if (currentHeight < 500) {
		currentHeight = 500;
		change = 1;
	}
	if (change) {
		window.resizeTo(currentWidth, currentHeight);
		window.moveTo(0,0);
	}
}