function popup(url, width, height) {
	var newwindow = window.open(url,"popup","height=" + height +
	", width=" + width + ", location=no, menubar=no, toolbar=no, scrollbars=yes, resizable=no");
    newwindow.opener = self;
}

function submitForm(formName, message) {
	if (confirm(message)) {
		document.forms[formName].submit();
	}
}

function submitFormNoPopup(formName) {
    document.forms[formName].submit();
}

