// JavaScript Document
function Abrir(destino,alto,ancho,ventana) 
{
	var jumpToHere;
	var winOptions;
	var popUpWindow; 
	
	jumpToHere = destino
	winOptions = "top=100, left=100, width=" + ancho + ", height=" + alto;
 	popUpWindow = document.open(jumpToHere, ventana, winOptions);
 }

function mostrar(Id,familia){
	nextUrl = "productos.php?f=" + familia + "&Id=" + Id;
	window.top.location.href = nextUrl;
//	alert(nextUrl);
}

function saltar(valor){
   if (valor.selectedIndex != 0)
   {
    window.location = valor.value;
   }
}

function eliminar(nexturl) {
	doyou = confirm("Epa!... estas por borrar algo !...está seguro?");
	
	if (doyou == true){
		window.top.location.href = nexturl;
	}else{
		alert('Operación cancelada');
	}
}
function isEmail(who) {
	var email=/^[A-Za-z0-9][\w-.]+[A-Za-z0-9]@[A-Za-z0-9]([\w-.]+[A-Za-z0-9]\.)+([A-Za-z]){2,4}$/i;
	return(email.test(who));
}

function atajo(nexturl) {
	if (nexturl != "") {
		window.top.location.href = nexturl;
	}
}
