// HISTORY BACK
//---------------------------------------------------------------------
function goback (sonsturl) {
	if (history.length > 0) {
		history.back ();
		} else {
		window.location.href(sonsturl);
	}
}