function SetOnLoad(id)
{
	pat = document.URL;
	if(pat.indexOf("product")!=-1)
	{
		InitProductList(pat.substr(pat.indexOf("p=")+2));
	}
	if(pat.indexOf("company")!=-1)
	{
		if(id == null)
			GetNewText(1);
		else
		{
			GetNewText(id);
		}
	}
	if(pat.indexOf("processview")!=-1)
	{
		SetVideoLeftMenu(1);
	}	
	if(pat.indexOf("servicioplanta")!=-1)
	{
		GetPlantServiceBody(1);
	}		
}

