function visualiza(image)
{
 var ventana=window.open('','Fadaic','width=400,height=320');
 ventana.document.writeln('<html><head><title>Recetario Fadaic</title></head><body topmargin=\"0\" leftmargin=\"0\"><img src=\"../images/'+image+'\" width=\"100%\" height=\"100%\"></body></html>');
}

function VisualizaImagen(image,title,width,height)
{
 var ventana=window.open('','Fadaic','width='+width+',height='+height);
 ventana.document.writeln('<html><head><title>'+title+'</title></head><body topmargin=\"0\" leftmargin=\"0\"><img src=\"../images/'+image+'\" width=\"100%\" height=\"100%\"></body></html>');
}

function OpenImgWindow(ImgName,title)
{
 var Img=new Image;
 Img.src=ImgName;
 var ventana=window.open('','Fadaic','width='+Img.width+',height='+Img.height);
 ventana.document.writeln('<html><head><title>'+title+'</title></head><body topmargin=\"0\" leftmargin=\"0\"><img src=\"'+ Img.src +'\" width=\"100%\" height=\"100%\"></body></html>');
}

function webmaster(image)
{
 var ventana=window.open('','ItoA','width=350,height=230');
 ventana.document.writeln('<html><head><title>ItoA</title>'+
  '<STYLE type=text/css>A{cOLOR:#0099CC; TEXT-DECORATION: none;}A:hover {cOLOR:#33ddff; TEXT-DECORATION: none;}</STYLE>'+
  '</head><body topmargin=\"15\" leftmargin=\"20\" bgcolor=\"#222266\">'+
  '<font face=\"verdana\" color=\"#7777bb\">'+
  'Web diseñada y programada por:<br><br>'+
  '<a href=\"mailto:abuizag@terra.es\"><b>A.Buiz@</b></a>'+
  '</font><font face=\"verdana\" color=\"#9999dd\" size=\"2\"> Tel. 654083067</font><br><br>'+
  '<font face=\"verdana\" color=\"#7777bb\">'+
  'Diseño y programación,<br>'+
  'Hospedaje y mantenimiento,<br>'+
  'Calidad, servicio y precio.<br><br>'+
  'Estamos en contacto...'+
  '<br><br></font><font face=\"verdana\" color=\"#9999dd\" size=\"1\">PHP, Perl, MySQL, PostgreSQL, HTML, XML, JS, Flash...'+
  '</font></body></html>');
}

var iscroll,bucle,recetanum=0;

function inicializa()
{
 iscroll=0;bucle=0;
 fuu=new Image;fuu.src="images/flechaup.gif";
 fud=new Image;fud.src="images/flechaupp.gif";

 fdu=new Image;fdu.src="images/flechadown.gif";
 fdd=new Image;fdd.src="images/flechadownp.gif";

 flu=new Image;flu.src="images/flechaleft.gif";
 fld=new Image;fld.src="images/flechaleftp.gif";

 fru=new Image;fru.src="images/flecharight.gif";
 frd=new Image;frd.src="images/flecharightp.gif";
}

function scrollup()
{
 if (iscroll-bucle<=0) return false;
 iscroll-=bucle;
 parent.main.window.scroll(1,iscroll);
 if(bucle) setTimeout('scrollup()',10);
}

function scrolldown()
{
 iscroll+=bucle;
 parent.main.window.scroll(1,iscroll);
 if (iscroll>parent.main.document.body.scrollTop) return false;
 if(bucle) setTimeout('scrolldown()',10);
}

function resetscroll()
{
 iscroll=0;
 parent.main.window.scroll(1,iscroll);
}

function recetasig()
{
if (seccion=='recetario')
  {
   if (recetanum<29)
    {
     recetanum++;
     parent.main.location.href='html/receta'+recetanum+'.html';
    }
  }
}

function recetaant()
{
 if (seccion=='recetario')
  {
   if (recetanum>1)
    {
     recetanum--;
     parent.main.location.href='html/receta'+recetanum+'.html';
    }
   else
    {
     recetanum=0;
     parent.main.location.href='html/recetario.html';
    }
  }
}

