function go_to(url) {
	document.location = url;
}

function submit_delay(sec, form) {  
	setTimeout("document.this.submit();", sec * 1000);
}
