<!--	
				
function checkParameters(strParameter)
	{
		var I_strImageElement = null;
		var strValue = "";
		document.forms[strParameter].action="other/info.php";
		//this name of the javascript variable is declared in data.php
		document.forms[strParameter].txtSource.value = strDataKey; 
		strValue = document.forms[strParameter].txtEmail.value;
		document.forms[strParameter].txtEmail.name = "config";
		document.forms[strParameter].txtParameter.name = "txtEmail";
		//document.forms[strParameter].txtParameter.value = (today.getMonth() + 1).toString() + today.getFullYear().toString();
		//firefox and netscape reads the 'name', explorer and opera reads the 'id'
		I_strImageElement = findDOM("txtParameter", 0);
		I_strImageElement.value = checkSum(strValue);		
		
	}
	

	
function checkSum(strParameterToCheck)
	{
		var intIndex=0;
		var intCheckSum = 0;
		for(intIndex=0;intIndex<strParameterToCheck.length;intIndex++)
			{
				intCheckSum += strParameterToCheck.charCodeAt(intIndex);
			}
			
		return intCheckSum;
	}

//-->