function ventana(pagina,ancho,alto) 
	{
	window.open(pagina, '', 'toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=0,width='+ancho+', height='+alto+', left = 250,top = 250');
	}

function ventana_con_scroll(pagina,ancho,alto) 
	{
	window.open(pagina, '', 'toolbar=0,scrollbars=1,location=0,statusbar=0,menubar=0,resizable=0,width='+ancho+', height='+alto+', left = 250,top = 250');
	}

function decision(message, url)
	{
	if(confirm(message)) location.href = url;
	}

function seleccionar_todo()
	{
   for (i=0;i<document.f1.elements.length;i++)
      if(document.f1.elements[i].type == "checkbox")
         document.f1.elements[i].checked=1
	}

function deseleccionar_todo()
	{
   for (i=0;i<document.f1.elements.length;i++)
      if(document.f1.elements[i].type == "checkbox")
         document.f1.elements[i].checked=0
	} 

