// Show and hide function
function show(item)
{
	var contenedor=document.getElementById('contenedor'+item) 
	var contenedor2=document.getElementById('contenedoro'+item) 
	
	if(contenedor.style.display=='none')
	{
		contenedor.style.display='inline'
		contenedor2.style.display='none'
	}
	else
	{
		contenedor.style.display='none'
		contenedor2.style.display='inline'
	}
}

function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}
// width fixed popup window
function abrirVentana(URL) {
       window.open(URL,"ventana1","width=869,height=626,scrollbars=YES");
}
// width side popup window
function sidePopup(URL) {
       window.open(URL,"sidepop","width=869,height=626,scrollbars=YES");
}

// end of the Show and hide function