// JavaScript Document
// *** VER EL DETALLE DEL PRODUCTO *********
function detail(id,w,h){
	if(w > 1000 && h > 1000){
		w = 800;
		h = 600;
	}
	if(w < 300 && h < 300){
		w = 300;
		h = 400;
	}

	var w = w * 1.3;
	var h = h + 140;	
	var size = "width=" + w +", height=" + h  + ", scrollbars=1";

	window.open('detail.php?id='+id,'Detalle',size);
}

///******* EVALUA EL VALOR DEL FORMULARIO DE BUSQUEDA
function searching(){
	var fr = window.document.formSearch;
	if(fr.txtSearch.value ==""){
		alert("Indica lo que deseas buscar.");
	}else{
		fr.submit();
	}
}

function lutdetail(id){
	window.open('luthier_det.php?id='+id,'Detalle','width=550, height=650,scrollbars=1');
}

function redondea(nom){
	   var roundCorners = Rico.Corner.round.bind(Rico.Corner);
	   roundCorners(nom);
	}

function gotoUrl(url){
	if(url != ""){
		document.location = url;
	}
}
