// JavaScript Document

function OpenLabelWindow(theURL,winName,features)
 { 
  window.open(theURL,winName,features);
 }
 
function openCenterWin(url,theWidth,theHeight)
{
var theTop=(screen.height/2)-(theHeight/2);
var theLeft=(screen.width/2)-(theWidth/2);
var features='height='+theHeight+',width='+theWidth+',top='+theTop+',left='+theLeft+",scrollbars=yes";

theWin=window.open(url,'',features);
}


function checkLength(oTextField, nMaxLength, sFieldName)

{

      var sText = oTextField.value;

      var nLen = sText.length;

     

      if (nLen > nMaxLength)

      {

            alert("El campo " + sFieldName + " solo acepta " + nMaxLength + " caracteres. " +

                  "Su " + sFieldName + " contiene [" + nLen + "] caracteres. " +

                  "Por favor reduzca la longitud de su comentario antes de enviarlo. www.mrmajestyk.com" );

            return false;

      }

      return true;

}