<!--
var left=01;
var top=01;
function popUpWindow(URLStr)
{
  var popUpWin=0;
  if(popUpWin)
  {
    if(!popUpWin.closed) popUpWin.close();
  }
  popUpWin = open('/fotos/galeria.php?dir='+URLStr+'', 'popUpWin', 'toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,copyhistory=yes,width=640,height=497,left=50, top=50');
}
//-->

function popUpSV(URLStr)
{
  var popUpSV=0;
  if(popUpSV)
  {
    if(!popUpSV.closed) popUpSV.close();
  }
  popUpSV = open('/saladevisita/galeria.php?dir='+URLStr+'', 'popUpWin', 'toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,copyhistory=yes,width=640,height=497,left=50, top=50');
}

function PlayerInterativa(URLStr)
{
  var popUpMus=0;
  if(popUpMus)
  {
    if(!popUpMus.closed) popUpMus.close();
  }
  popUpMus = open('/live/player_interativa.php'+URLStr+'', 'aovivo','status=yes,resizable=no,width=480,height=295,top=111,left=10');
}

function textCounter(campo, countcampo, maxlimit)
{
	if (campo.value.length > maxlimit)
	{
		campo.value = campo.value.substring(0, maxlimit);
	}
	else
	{
		countcampo.value = maxlimit - campo.value.length;
	}
}