function GoImg(ID) { document.location.href = "/goimg.asp?id=" + ID; }
function search()
{
	with (document)
	{
		write("<p><form name='search' method='get' action='/search.asp'><table id='search' cellpadding='0' cellspacing='0'><tr>");
		write("<td id='search_text'><input type='text' name='query'></td>");
		write("<td id='search_button'><input type='submit' value='CERCA' class='submit'></td>");
		write("<td id='search_social'><a href='http://www.facebook.com/pages/Ricette-Gratis/185884621452170' target='_blank' rel='nofollow'><img src='/immagini/facebook.gif' align='absmiddle'></a> <a href='http://www.facebook.com/pages/Ricette-Gratis/185884621452170' target='_blank' rel='nofollow'>Seguici su Facebook</a></td>");
		write("</tr></table></form></p>");
	}
}
function menu_off()
{
	for (var x=1; x<8; x++)
	{
		document.getElementById("menu_" + x).style.visibility = "hidden";
		document.getElementById("menu_" + x).style.position = "absolute";
	}
	document.getElementById("menu_0").style.visibility = "visible";
	document.getElementById("menu_0").style.position = "relative";
}
function menu_on(id)
{
	for (var x=0; x<8; x++)
	{
		document.getElementById("menu_" + x).style.visibility = "hidden";
		document.getElementById("menu_" + x).style.position = "absolute";
		if (x == id)
		{
			document.getElementById("menu_" + id).style.visibility = "visible";
			document.getElementById("menu_" + id).style.position = "relative";
		}
	}
}

