function enfocar(cosa) {
	if (document.getElementById) { // DOM3 = IE5, NS6 
		document.getElementById(cosa).focus(); 
	} else { 
		if (document.layers) { // Netscape 4 
			document[cosa].focus(); 
		} else { // IE 4 
			document.all[cosa].focus(); 
		} 
	} 
}

function abrir(url,ventana,ancho,alto) {
	var ad = 'status=yes,scrollbars=yes,width=' + ancho + ',height=' + alto;
	window.open(url,ventana,ad);
}