// JavaScript Document
function pasar_pagina(opcion,numero_lista)
{
//*********************************************************
	if(opcion==0)//siguiente
		{
			document.getElementById("pagina_actual").value=parseInt(document.getElementById("pagina_actual").value)-1;
			document.getElementById("fin").value=parseInt(document.getElementById("inicio").value);
			document.getElementById("inicio").value=parseInt(document.getElementById("inicio").value)-parseInt(numero_lista);
		}
	else if(opcion==1)//anterior
		{
			document.getElementById("pagina_actual").value=parseInt(document.getElementById("pagina_actual").value)+1;
			document.getElementById("inicio").value=parseInt(document.getElementById("fin").value);
			document.getElementById("fin").value=parseInt(document.getElementById("fin").value)+parseInt(numero_lista);
		}
	else//inicio
		{
		document.getElementById("pagina_actual").value=1;
		document.getElementById("inicio").value=0;
		document.getElementById("fin").value=parseInt(numero_lista);
		}
document.forms["pasar"].submit();
}

// JavaScript Document
function pasar_pagina_ofertas(opcion,numero_lista)
{
//*********************************************************
	if(opcion==0)//siguiente
		{
			document.getElementById("pagina_actual").value=parseInt(document.getElementById("pagina_actual").value)-1;
			document.getElementById("fin").value=parseInt(document.getElementById("inicio").value);
			document.getElementById("inicio").value=parseInt(document.getElementById("inicio").value)-parseInt(numero_lista);
		}
	else if(opcion==1)//anterior
		{
			document.getElementById("pagina_actual").value=parseInt(document.getElementById("pagina_actual").value)+1;
			document.getElementById("inicio").value=parseInt(document.getElementById("fin").value);
			document.getElementById("fin").value=parseInt(document.getElementById("fin").value)+parseInt(numero_lista);
		}
	else//inicio
		{
		document.getElementById("pagina_actual").value=1;
		document.getElementById("inicio").value=0;
		document.getElementById("fin").value=parseInt(numero_lista);
		}
document.forms["pasar"].action="ofertas.php";
document.forms["pasar"].submit();
}

function pasar_pagina_semi(opcion,numero_lista)
{
//*********************************************************
	if(opcion==0)//siguiente
		{
			document.getElementById("pagina_actual").value=parseInt(document.getElementById("pagina_actual").value)-1;
			document.getElementById("fin").value=parseInt(document.getElementById("inicio").value);
			document.getElementById("inicio").value=parseInt(document.getElementById("inicio").value)-parseInt(numero_lista);
		}
	else if(opcion==1)//anterior
		{
			document.getElementById("pagina_actual").value=parseInt(document.getElementById("pagina_actual").value)+1;
			document.getElementById("inicio").value=parseInt(document.getElementById("fin").value);
			document.getElementById("fin").value=parseInt(document.getElementById("fin").value)+parseInt(numero_lista);
		}
	else//inicio
		{
		document.getElementById("pagina_actual").value=1;
		document.getElementById("inicio").value=0;
		document.getElementById("fin").value=parseInt(numero_lista);
		}
document.forms["pasar"].action="semi_nuevos.php";
document.forms["pasar"].submit();
}

function pasar_pagina_dp(opcion,numero_lista)
{
//*********************************************************
	if(opcion==0)//siguiente
		{
			document.getElementById("pagina_actual").value=parseInt(document.getElementById("pagina_actual").value)-1;
			document.getElementById("fin").value=parseInt(document.getElementById("inicio").value);
			document.getElementById("inicio").value=parseInt(document.getElementById("inicio").value)-parseInt(numero_lista);
		}
	else if(opcion==1)//anterior
		{
			document.getElementById("pagina_actual").value=parseInt(document.getElementById("pagina_actual").value)+1;
			document.getElementById("inicio").value=parseInt(document.getElementById("fin").value);
			document.getElementById("fin").value=parseInt(document.getElementById("fin").value)+parseInt(numero_lista);
		}
	else//inicio
		{
		document.getElementById("pagina_actual").value=1;
		document.getElementById("inicio").value=0;
		document.getElementById("fin").value=parseInt(numero_lista);
		}
document.forms["pasar"].action="productos_dp.php";
document.forms["pasar"].submit();
}