var winl,wint,res,flechas,imagen,titulo,ancho,alto; 
function Flash(_imagen, _titulo, _ancho, _alto, _flechas,_res){
   winl=(screen.width-_ancho)/2;
   wint=(screen.height-_alto)/2;
   res=_res;
   flechas=_flechas;
   imagen=_imagen;
   titulo=_titulo;
   ancho=_ancho;
   alto=_alto;
   options="width="+ancho+",height="+alto+",resizable="+res+",top="+wint+",left="+winl+",scrollbars="+flechas;
   window.open("flash.html", "", options);
}