// JavaScript Document
var popUpWin=0;
var popUpWin2=0;
var popUpWinMap=0;
function popUpWindow(URLStr, left, top, width, height)
{
  if(popUpWin)
  {
    if(!popUpWin.closed) popUpWin.close();
  }
  popUpWin = open(URLStr, 'popUpWin', 'toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=no,copyhistory=yes,width='+width+',height='+height+',left='+left+', top='+top+',screenX='+left+',screenY='+top+'');
}

function popUpWindowMap(URLStr, left, top, width, height)
{
  if(popUpWinMap)
  {
    if(!popUpWinMap.closed) popUpWinMap.close();
  }
  popUpWinMap = open(URLStr, 'popUpWinMap', 'toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=no,copyhistory=yes,width='+width+',height='+height+',left='+left+', top='+top+',screenX='+left+',screenY='+top+'');
}

function popUpWindow2(URLStr, left, top, width, height)
{
  if(popUpWin2)
  {
    if(!popUpWin2.closed) popUpWin2.close();
  }
  popUpWin2 = open(URLStr, 'popUpWin', 'toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=no,copyhistory=yes,width='+width+',height='+height+',left='+left+', top='+top+',screenX='+left+',screenY='+top+'');
}

function Descarga_datos(){
    //alert("Esta listo para descargar los datos ?");
    document.forms[0].action="http://gisweb.ciat.cgiar.org/Formularios/formulario.asp";
    var windown = window.open("descargaCD.htm", "windown", "width=717,height=650,scrollbars=1,status=0,toolbar=0,resize=0,location=0,left=100, top=100,screenX=10,screenY=10");
	window.opener.focus();
	window.close();
	windown.focus();
}