function seleccionaprod(event){
	window.location.href="?prod="+event;
}
function e_seleccionaprod(event1,event2,event3){
	window.location.href="?prod="+event3+"&s_prod="+event1+"&subprod="+event2;
}
function seleccionasubprod(event1,event2){
	window.location.href="anuncios.php?prod="+event1+"&s_prod="+event1+"&subprod="+event2;
}
function busquedaporestado(event1,event2,event3){
	window.location.href="anuncios.php?prod="+event1+"&s_prod="+event1+"&subprod="+event2+"&s_estado="+event3;
}
function mostrardiv(event){
	if(document.getElementById("prev").value){
		document.getElementById("div_"+document.getElementById("prev").value).style.display="none";
		document.getElementById("vid_"+document.getElementById("prev").value).className="pestanagrisgris";
	}
	document.getElementById("div_"+event).style.display="block";
	document.getElementById("vid_"+event).className="pestanarojagris";
	document.getElementById("prev").value=event;
	document.getElementById("aprov").value="1";
}
function irpage(event1,event2,event3,event4){
	window.location.href="?prod="+event1+"&s_prod="+event2+"&subprod="+event3+"&page="+event4+"#location";	
}
function buscar_avanzado(){
	window.location.href="anuncios.php?tipo="+document.getElementById("tipo").value+"&marca="+document.getElementById("marca").value+"&modelo="+document.getElementById("modelo").value+"&estado="+document.getElementById("s_estados").value+"&avanzado=1&page=1";	
}
function mostrardivgaleria(event){
	if(document.getElementById("anterior").value){
		document.getElementById("grande_"+document.getElementById("anterior").value).style.display="none";
	}
	document.getElementById("grande_"+event).style.display="block";
	document.getElementById("anterior").value=event;
}
function Aparecer(){
	if(document.getElementById("tipo").value>0){
		document.getElementById("s_estados").disabled=false;
	}else{
		document.getElementById("s_estados").disabled=true;
	}
}