/*
'------------------------------
' (c)2003 Newport Media Group srl
' Modulo:
' File: StateMnt.js 
' Versione: 2
' Data creazione file: 29/03/2003
' Data modifica file: 22/09/2003
' Autore: Massimo Perrone
' Implementato per il sito: 
' Note:
' Log:
' 09/07/2003 riscritta funzione GoToPage
' 22/09/2003 creato file nella ASP Scource Library
'
'------------------------------
*/



/*
vers. 1

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();
}

*/

function GoToPage(strPageName, strName, strValue){
	var strStatus
		
	document.Form_State.Target.value = strName
	document.Form_State.Argument.value = strValue

	document.Form_State.action = strPageName;
	document.Form_State.submit();
}
