function abre_ventanuko(urle,ancho,alto,barras,nomventana)
{
	var nombre
	if (nomventana==undefined) {nombre='ventanuko'}
	else {nombre=nomventana}
	window.open(urle,nombre,"toolbar=no,resizable=no,location=no,directories=no,status=no,menubar=no,scrollbars="+barras+",top=0,left=0,innerWidth="+ancho+",width="+ancho+",height="+alto);
}