var opciones;
function abrir_ventana(direccion,nombre_ventana,ancho,alto,arriba,izquierda)
{
	opciones="width="+eval(ancho)+",height="+eval(alto)+",top="+eval(arriba)+",left="+eval(izquierda);
	var ident=window.open(direccion,nombre_ventana,opciones);


}
