function changeFormAction(id, action)
{
	var form = document.getElementById(id);
	form.action = action;
}

function changeFormPage( form, input )
{
	var form = document.getElementById(id);
	var inputField = document.getElementById(input);
	alert ( inputField );
	form.action = 'page_'.inputField.value;
}

function confirmLink( message )
{
	if ( true != confirm( message ))
	{
		return false;
	}
	else return true;
}