function go_inbox(mid)
{
	window.location = "index.php?module=inbox";
}

function go_scrie(mid)
{
	window.location = "index.php?module=mesaj_scrie";
}

function go_trimise(mid)
{
	window.location = "index.php?module=mesaje_trimise";
}

function sterge()
{
	conf = confirm("Esti sigur(a) ca vrei sa stergi mesajele selectate?");
	if (conf)
	{
		document.getElementById("inbox_actions").submit();
	}
}

function sterge2()
{
	conf = confirm("Esti sigur(a) ca vrei sa stergi mesajele selectate?");
	if (conf)
	{
		document.getElementById("sent_actions").submit();
	}
}


