///////////////////////////////////////////////////////////////////////////////////
//
//		File:	IndexValidation.js
//				Copyright (c) 2003 Catfish Software Inc.
//				All rights reserved.
//
//		Desc:   To perform the Cilent side input validations Index Content Details
//
//		Auth:	PBSI
//		Date:	09/24/03
//
///////////////////////////////////////////////////////////////////////////////////
//		Modification History
//---------------------------------------------------------------------------------
//		Date:		Author:				Description:
//		--------	---------------		-------------------------------------------
//		09/24/03	PBSI				Initial implementation
//
///////////////////////////////////////////////////////////////////////////////////
//		To Do:
//---------------------------------------------------------------------------------
///////////////////////////////////////////////////////////////////////////////////
//

//<!--
//Function to trim the empty spaces
function funTrimString(objStr)
{	
	if(objStr.value.charCodeAt(0)==32)
	{
		objStr.value = objStr.value.substr(1,objStr.value.length)
		funTrimString(objStr)
	}
	else if(objStr.value.charCodeAt(objStr.value.length-1)==32)
	{
		objStr.value = objStr.value.substr(0,objStr.value.length-1)
		funTrimString(objStr)
	}
}

function funValidate(frmObj) {	
}

//-->
