function submitForm(show, ActionURL)
{
	if(!document.forms[0].show)
		CreateHiddenElement('show');
	document.frmClubCirque.action = ActionURL;
	document.frmClubCirque.show.value = show;
	document.frmClubCirque.submit();
	return(true);
}

function CreateHiddenElement(strName)
{
	var newinput = document.createElement('INPUT');
	newinput.type = 'hidden';
	newinput.name = strName;
	newinput.id = strName;
	document.forms[0].appendChild(newinput);
}