<!--
   function showImage(imgSrc, ancho, alto, title) {
      var w;
	  var x, y;
	  if(window.screen) {
	     x = ((screen.width - ancho) >> 1);
		 y = ((screen.height - alto) >> 1);
	  }
	  if(document.all) 
	      w = window.open("", "my_win", "width=" + ancho + ", height=" + alto + " ,  left=" + x + ", top=" + y + ", dependent=yes, resizable=no");
	  else
	      w = window.open("", "my_win", "width=" + ancho + ", height=" + alto + " ,  screenx=" + x + ", screeny=" + y + ", dependent=yes, resizable=no");
	  w.document.write("<HTML><HEAD><TITLE>'" + title + "'</TITLE></HEAD><BODY BGCOLOR='#ffffff' LEFTMARGIN='0' TOPMARGIN='0' MARGINWIDTH='0' MARGINHEIGHT='0'></BODY></HTML>");
	  w.focus();
   }

   function showVideo(file) {
     var w;
	  var x, y;
	  ancho = 240;
	  alto = 190;
	  if(window.screen) {
	     x = ((screen.width - ancho) >> 1);
		 y = ((screen.height - alto) >> 1);
	  }
	  if(document.all) 
	      w = window.open("", "my_win", "width=" + ancho + ", height=" + alto + " ,  left=" + x + ", top=" + y + ", dependent=yes, resizable=no");
	  else
	      w = window.open("", "my_win", "width=" + ancho + ", height=" + alto + " ,  screenx=" + x + ", screeny=" + y + ", dependent=yes, resizable=no");
	  w.document.write("<HTML><HEAD><TITLE>'Copa América 2007 - VIDEO'</TITLE></HEAD><BODY BGCOLOR='#FFFFFF' LEFTMARGIN='0' TOPMARGIN='0' MARGINWIDTH='0' MARGINHEIGHT='0'><TABLE ALIGN='CENTER'  WIDTH='100%' BORDER='0' CELLPADDING='0' CELLSPACING='0'> </TABLE><P ALIGN='CENTER'>" + "<EMBED height=190 pluginspage='http://www.apple.com/quicktime/download/indext.html' src='" + file + "' width='240' target='myself' border='0' controller='true'></EMBED>" + "</P><BR><TABLE ALIGN='CENTER' WIDTH='100%' BORDER='0' CELLPADDING='0' CELLSPACING='0'><TR><TD WIDTH='100%' HEIGHT='40'></TD></TR></TABLE></BODY></HTML>");
	  w.focus();	   
   }
   
   function loadTop(file) {
      if(parent.topFrame) {
         var i = parent.topFrame.location.href.lastIndexOf('/');
         if(parent.topFrame.location.href.substring(i + 1) != file) {
            parent.topFrame.location.href = file;
         }
      }
   }

   function loadBottom(file) {
      if(parent.bottomFrame) {
         var i = parent.bottomFrame.location.href.lastIndexOf('/');
         if(parent.bottomFrame.location.href.substring(i + 1) != file) {
            parent.bottomFrame.location.href = file;
         }
      }
   }   
//-->