// JavaScript Document

function cargar_items_pagina(){
	formulario = document.getElementById("f_buscar");
	formulario.submit();
}

function Modificar_Pagina_Seleccionada(p_pagina){
	formulario = document.getElementById("f_buscar");
	campo_pagina = document.getElementById("pagina_sel");

	campo_pagina.value = p_pagina;
	formulario.submit();
}

function Controlar_Canpo_Carrito(e){
	
	if(window.event) // IE
	{
		keynum = e.keyCode;
	}else if(e.which) // Netscape/Firefox/Opera
  	{
  		keynum = e.which;
	}
		
	if (keynum >= 48 && keynum <= 57){
		return true;
	}else{
		alert("Solo se permiten números");
		return false;
	}
	
}

function Controlar_Vacios(obj){
	if (obj.value == "0" || obj.value == ""){
		alert("Debe introducir un valor númerico correcto para poder continuar");
		obj.focus();
	}
}

function openPopUp(titPopUp,txtPopUp) {	
	LeftPosition = (screen.width) ? (screen.width-500)/2 : 10;
	TopPosition = (screen.height) ? (screen.height-450)/2 : 10;
	
	opt = "width=500,height=450,left=" + LeftPosition + ",top=" + TopPosition + ",maxbutton=0";
	
 	newWindow = window.open("","newWindow",opt);
	newWindow.document.open();
	newWindow.document.write("<html><head><title>"+titPopUp+"</title></head><link href='includes/alibey.css' rel='stylesheet' type='text/css'>"); 
	newWindow.document.write("<body bgcolor='#FFFFFF'>"); 
	newWindow.document.write('<table border=0 width="100%" height="100%" bgcolor="#FFFFFF"><tr><td align="center" valign="middle"><img src="imagenes/colgante_promocion.jpg" border="0" align="absmiddle" hspace="10"></td><td><div id="popup"><p class="titpopup"><b>'+titPopUp +'</b></p><p>'+txtPopUp +'</p></div><\/td><\/tr><\/table>'); 
	newWindow.document.write('</body></html>');
	newWindow.document.close();
	newWindow.focus();
}
