// SARENET


function getCookie(Name) {
   var search = Name + "="
   if (document.cookie.length > 0) {
      offset = document.cookie.indexOf(search)
      if (offset != -1) {
         offset += search.length
         end = document.cookie.indexOf(";", offset)
         if (end == -1)
            end = document.cookie.length
         return unescape(document.cookie.substring(offset, end))
      }
   }
}
function setCookie(name, value, expire) {
 document.cookie = name + "=" + value   + ";domain=.sarenet.es" + ((expire == null) ? "" : ("; expires=" + expire));
}
var unavez = getCookie("unavez");
if (unavez == null)
 unavez = 0;
setCookie("unavez", parseInt(unavez)+1, "Tue, 31-Dec-2005 00:00:00");


function sacaventana() {
   var vez = getCookie("unavez");
   if(vez==1) {
   	if (navigator.appName.indexOf("Internet Explorer") != -1) {
		msg2=window.open("pop_clientes.html","","width=240,height=240,resizable=no,scrollbars=no");
	} else {
		msg2=window.open("pop_clientes.html","","width=400,height=240,resizable=no,scrollbars=no");
	}
   }
}


