/*
<!-- Dynamic Version by: Nannette Thacker -->
<!-- http://www.shiningstar.net -->
<!-- Original by :  Ronnie T. Moore -->
<!-- Web Site:  The JavaScript Source -->
<!-- Use one function for multiple text areas on a page -->
<!-- Limit the number of characters per textarea -->
<!-- Begin */
function textCounter(field,cntfield,maxlimit) {
   if (field.value.length > maxlimit) // if too long...trim it!
      field.value = field.value.substring(0, maxlimit);
// otherwise, update 'characters left' counter
   else
      cntfield.value = maxlimit - field.value.length;
}
         var windo;
         function oW(url,t,w,h) {
            windo = window.open('',"imagen","width="+w+",height="+h+",toolbar=no,directories=no,location=no,copyhistory=no,scrollbars=yes,resizable=yes");
            windo.document.write('<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">\n<html xmlns="http://www.w3.org/1999/xhtml">\n<head>\n<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />\n<title>'+t+' lagushop.com</title>\n<style type="text/css">BODY { margin:0; padding:0; cursor:pointer;}</style>\n</head>\n<body onload="window.focus();" onclick="window.self.close();">\n');
            windo.document.write('<img src="'+url+'" onload="opener.resize(this.width,this.height);"></body></html>\n');
            windo.focus();
            windo.document.close();
         }
         function resize(w,h) { if(windo) { windo.resizeTo(w+40,h+85); } }
function _(url,nombre,ancho,alto) {
  ancho = ancho ? ancho : 600; alto = alto ? alto : 480; nombre = nombre ? nombre : 'aux';
  aux = window.open(url,nombre,"width="+ancho+",height="+alto+",toolbar=no,directories=no,location=no,copyhistory=no,scrollbars=yes,resizable=yes");
  aux.focus();
  return false;
}
