// JavaScript Document

	function fetch_object(idname)
	{
		if (document.getElementById)
			return document.getElementById(idname);
		else if (document.all)
			return document.all[idname];
		else if (document.layers)
			return document.layers[idname];
		else
			return null;
	}

//Gia to Plaino Menu
	function show(name) {
		var obj,menu,main,right,site;
		obj = fetch_object(name);
		menu = fetch_object("menu_div");
		main = fetch_object("main_div");
		right = fetch_object("right_div");
		site = fetch_object("site_div");
		if (obj.style.display == "")
		{
			obj.style.display = "none";
			menu.style.width = "160px";
			main.style.width = "660px";		
		}
		else
		{
			obj.style.display = "";
			menu.style.width = "220px";
			main.style.width = "600px";		
		}
	}

	function showprod(name) {
		var obj;
		obj = fetch_object(name);
		if (obj.style.display == "")
		{
			obj.style.display = "none";
		}
		else
		{
			obj.style.display = "";
		}
	}
