
function email(w)
{
	var e;
	e = document.getElementById("idwho");
	e.value = w;
	e = document.getElementById("idform");
	e.submit(); 
}

