// JavaScript Document
function SearchHome()
{
	if(document.getElementById("fullname").value == "")
	{
		alert("Please insert text");	
		document.getElementById("fullname").focus();
		return false;
	}else{
		document.searchj.action ="products.asp?category=0&brand=0&size=0"	
		document.searchj.submit();
	}
	
}

function executeEnter(event)
{
	var key
	if(window.event)
		key = window.event.keyCode
	else 
		if(event)
			key = event.which
		else
			return true
		// Si es tecla enter
			
	if(key == 13)
		SearchHome();
}





function SearchHomeP()
{
	if(document.getElementById("fullname").value == "")
	{
		alert("Please insert text");	
		document.getElementById("fullname").focus();
		return false;
	}else{
		document.frmJuiceBox.action ="products.asp?category=0&brand=0&size=0"	
		document.frmJuiceBox.submit();
	}
	
}


 function mypopup()
 {
  var codigo = document.getElementById("codigo").value
   mywindow = window.open ("more views.asp?codigo="+codigo,"mywindow","location=0,status=0,scrollbars=0,width=620,height=540");
  mywindow.moveTo(0,0);
  return false;
 } 
 
 function SearchPPAL()
 {
	/*alert(document.getElementById("brandxx").value);	
	alert(document.getElementById("categoryp").value);
	alert(document.getElementById("searchp").value);*/
	var categoryp 	= document.getElementById("categoryp").value;
	var brandp		= document.getElementById("brandxx").value;
	var searchp		= document.getElementById("searchp").value;
/*	alert("products.asp?category="+categoryp+"&brand="+brandp+"&size=0&fullname="+searchp);*/
	document.frmSearchPPAL.action = "products.asp?category="+categoryp+"&brand="+brandp+"&size=0&fullname="+searchp;
	document.frmSearchPPAL.submit();
	
}



 function SearchPPALWN()
 {
	/*alert(document.getElementById("brandxx").value);	
	alert(document.getElementById("categoryp").value);
	alert(document.getElementById("searchp").value);*/
	var categoryp 	= document.getElementById("categoryp").value;
	var brandp		= document.getElementById("brandxx").value;
	var searchp		= document.getElementById("searchp").value;
	/*alert("products.asp?category="+categoryp+"&brand="+brandp+"&size=0&fullname="+searchp);*/
	document.frmSearchPPAL.action = "whats_new.asp?category="+categoryp+"&brand="+brandp+"&size=0&fullname="+searchp;
	document.frmSearchPPAL.submit();
	
}


function searchprodutcsy(event)
{
	//alert("sfgfgsdfgdf");
	document.getElementById("searchp").value ="";
	document.getElementById("searchp").focus();
return false;
}



function executeEnterd(event)
{
	
	var key
	if(window.event)
		key = window.event.keyCode
	else 
		if(event)
			key = event.which
		else
			return true
		// Si es tecla enter
			
	if(key == 13)
		SearchPPAL();
}