function changeLanguage(pLang){
	document.forms[0].hdLang.value = pLang;
	document.forms[0].target='_self';
	document.forms[0].submit();
}

function showNewHome(pNewID){
	document.forms[0].NewID.value = pNewID;
	document.forms[0].action = "index.php/noticias_det";
	document.forms[0].target='_self';
	document.forms[0].submit();
}

function showNew(pNewID){
	document.forms[0].NewID.value = pNewID;
	document.forms[0].action = "noticias_det";
	document.forms[0].target='_self';
	document.forms[0].submit();
}

function showCategory(pCatID, pCatNom){
	document.forms[0].CatID.value = pCatID;
	document.forms[0].action = pCatNom;
	document.forms[0].target='_self';
	document.forms[0].submit();
}