// JavaScript Document
function submitForm(formID){
	document.getElementById(formID).submit();
}

function redirect(targetUrl){
	window.location = targetUrl;
}
