// FormName = name of the form being submitted
// urlLocation = the form processing script
// formTarget = the target window for normal processing use (_self)

function postTo(formName, urlLocation, formTarget) {
	var my_form = document.getElementById(formName);
	my_form.setAttribute('action', urlLocation);
	my_form.setAttribute('target', formTarget);
	my_form.submit();
	document.getElementById("AppIFrame").contentWindow.focus();
}

function framePrint() {
	top.window.focus();
	top.window.print();
}

