﻿function toggle(e)
{
	if (e.style.display == "none")
	{
		e.style.display = "";
	}
	else
	{	e.style.display = "none";
	}
}

function changeActionAndMethodOnFormAndSubmit(newAction, newMethod) 
{
    var theForm = document.forms['PageForm'];
    if (!theForm) {
        theForm = document.PageForm;
    }
    theForm.action = newAction;
    theForm.method = newMethod;
    theForm.submit();
}