function setCMD(pValue)
{
	master.elements['cmd'].value = pValue;
	document.master.submit();
}

function setTextboxValue(pName, pValue){
	alert(pName);
	alert(pValue);
	alert(document.getElementById(pName).value);
	document.getElementById(pName).value = pValue;
	alert(typeof(tb));
	tb.value = pValue;
	tb.text = pValue;
}
	

