// JavaScript Document

function getForm() {
	declareElements();
	f = document.getElementById("hiddenforms");
	if (f) {
		js_addform.innerHTML = js_hiddenforms.innerHTML;
		js_hiddenforms.innerHTML = '';
		js_hiddenforms.parentNode.removeChild(js_hiddenforms);
		js_addform.style.padding = '0px 0px 0px 15px';
	}
}

function displayconfirmation() {
	var js_hiddenconfirmations = document.getElementById("hiddenconfirmations");
	var content_out = document.getElementById("content_out");
	content_out.innerHTML = '';
	if (content_out) {
		if (js_hiddenconfirmations) {
			content_out.innerHTML = js_hiddenconfirmations.innerHTML;
			js_hiddenconfirmations.innerHTML = '';
			js_hiddenconfirmations.parentNode.removeChild(js_hiddenconfirmations);
		}
	}
}


