	function GetScreenResolution()
	{
		frmMain.screenresolutionvalue.value = screen.width+"x"+screen.height+"x"+screen.colorDepth;
	}
	function Confirm(text, command1, command2)
	{
		if(confirm(text))
		{
			frmMain.hdhCommand1.value = command1;
			frmMain.hdhCommand2.value = command2;
			frmMain.submit();
		}
	}


