function show_me(date_server) 
{
	document.getElementById("date_div").innerHTML = date_server;
}
	
function get_date() 
{
	x_show_now(show_me);

	//do it every 1 second
	setTimeout("get_date()", 999000);
}

function go(url) 
{ 
	location.href = url; 
}

function submete(form) 
{             
	form.submit();
}

function confirmadel(form)
{

	if(confirm('Deseja realmente excluir esse registro'))
	{
		form.submit();
	}
}

