function unpadInput(obj)
{
//	var s = new String(obj.value);
//	var i = s.length;
//
//	while ((i >= 0) && (s.charAt(i-1) == " "))
//		i--;
//
//	s = s.substring(0, i);
//	obj.value=s;
}
function padInput(obj)
{
//	var s = new String(obj.value);
//	var i = s.length;
//	while (s.length < obj.size)
//		s += " ";
//		
//	obj.value=s;
}
function validateinputs(theForm)
{

//	var elemcnt = theForm.elements.length;
//	var obj = null;
//	var tmpstr = new String();
//	for (i = 0; i < elemcnt; i++) {
//		obj = theForm.elements(i);
//		tmpstr = obj.tagName;
//		if (tmpstr.toLowerCase() == "input") {
//			tmpstr = obj.type;
//			if ((tmpstr.toLowerCase() == "text") || (tmpstr.toLowerCase() == "password")) {
//				unpadInput(obj);
//			}			
//		}
//	}
return true;
}
