/*
(c)2003 Newport Media Group srl
File: StateMnt.js 1.0
Data creazione file:29/03/2003
Data modifica file:
Autore: Massimo Perrone
Note:
Log:
*/

function GoToPage(strPageName, strName, strValue){
	var strStatus
		
	strStatus = document.Form_State.Status.value;

	if (strName.length > 0){	
		if (strStatus.indexOf(strName + '=') == -1){
			if (strStatus.length > 0)	{
				strStatus = strStatus + ';' + strName + '=' + strValue
			}
			else {
				strStatus = strName + '=' + strValue
			}
		}
		else {
			if (strStatus.indexOf(strName + '=') == 0){	
				strStatus = strName + '=' + strValue
			}
			else {
				strStatus =	strStatus.substr(0, strStatus.indexOf(strName + '=')-1) + ';' + strName + '=' + strValue
			}
		}
	}

	document.Form_State.Status.value = strStatus;
	document.Form_State.action = strPageName;
	document.Form_State.submit();
}