function SubmitWindow(e,form) {
	var key = e.keyCode || e.which;
	if (key == 13) {
		form.submit();
	}
}
