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