// JavaScript Document
function popupImagen(url, titulo){
	window.open("modulos/popupFotos.php?url="+url+"&titulo="+titulo,"AmpliarImagen","width=640,height=620,left=0,top=0,scrollbars=yes,resizable=no");	
}
function abrircatalogo(url, ancho, alto){
	//ancho = screen.width;
	alto = screen.height;
	ancho = 1000;
	window.open(url,"Catalogo","width="+ancho+",height="+alto+",left=0,top=0,scrollbars=yes,resizable=no");	
}
function abrirPopup(url, ancho, alto){
	window.open(url,"Ventana","width="+ancho+",height="+alto+",left=0,top=0,scrollbars=yes,resizable=no");	
}
function detectarCookie(){
var cookieEnabled=(navigator.cookieEnabled)? true : false

//if not IE4+ nor NS6+
if (typeof navigator.cookieEnabled=="undefined" && !cookieEnabled){ 
document.cookie="testcookie"
cookieEnabled=(document.cookie.indexOf("testcookie")!=-1)? true : false
}

 if (!cookieEnabled){ 
    document.getElementById("mesg_cookie").className='cookiesi';
    return false;
 }
 else{
    document.getElementById("mesg_cookie").className='cookieno';
    return true;
   }
//if (cookieEnabled) //if cookies are enabled on client's browser
//do whatever
}
