var a,b,c,d
function ventana(url, ancho, alto, barra, nombre) {
	izquierda = (screen.width) ? (screen.width-ancho)/2 : 100
	arriba = (screen.height) ? (screen.height-alto)/2 : 100
	opciones = 'toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=' + barra + ',resizable=0,width=' + ancho + ',height=' + alto + ',left=' + izquierda + ',top=' + arriba + ''
	return window.open(url, nombre, opciones)
}
function locCmb(obj,id)
{
for (var x=0;x<=obj.length;x++)
	if (obj[x].value==id) return x;
return -1;
}