
if (top != window) {
	top.location.href = window.location.href;
}

var is_submitted = false;

function go_post() { 

	if( is_submitted ) {
		return false;
	}
	else {
		is_submitted = true;
		return true;
	}
}

