function popUP(URL)
{
 window.open('imagen.php?src='+URL,'Ayuda','toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=0,width=800,height=532,left = 200,top = 50');
}

function AbreEstadio(tipo)
{
var winW = 630, winH = 460;

 if (parseInt(navigator.appVersion)>3)
 {
  if (navigator.appName=="Netscape")
  {
   winW = window.innerWidth - 10;
   winH = window.innerHeight + 110;
  }
  if (navigator.appName.indexOf("Microsoft")!=-1)
  {
   winW = document.body.offsetWidth + 11;
   winH = document.body.offsetHeight - 608;
  }
 }

/* winW = window.outerWidth;
 winH = window.outerHeight;*/


 window.open('mapa.php?tipo='+tipo+'&winW='+winW+'&winH='+winH,'Ayuda','toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=0,width='+winW+',height='+winH+',left = 0,top = 0');
 //window.open('mapa.php?winW=630&winH=460','Mapa','toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=1,width=630,height=460,left = 0,top = 0');
}

var celda;
celda = 0;

function Color(celda2)
{
	var texto = '';
	celda2.style.backgroundColor = '#fff5be';

	if (navigator.appName=="Netscape")
    {
    	texto ="[object HTMLTableRowElement]";
    }
    else if (navigator.appName.indexOf("Microsoft")!=-1)
    {
    	texto ="[object]";
    }

	if(celda == texto)
	{
	 if (celda.id != celda2.id ) celda.style.backgroundColor = 'white';
	}

	 celda = celda2;
}

function Sincolor()
{
	if (navigator.appName=="Netscape")
    {
    	texto ="[object HTMLTableRowElement]";
    }
    else if (navigator.appName.indexOf("Microsoft")!=-1)
    {
    	texto ="[object]";
    }

	if(celda == texto)
	{
	 celda.style.backgroundColor = 'white';
	}
}
