

function textover(testo)
         {
                        if (document.images)
                       
                        window.status = testo; return true
         }
function textdown()
         {
                        if (document.images)
                        
                        window.status = " "; return true

}
function openindex(w,h,title,image)
      { 
	  var scrolls;
	  var resize;
	  var h2;
	  var w2;
	  
	   if(w > 800)
  		{
		 	scrolls = 'yes';
			resize = 'yes';
			w2 = '800';
  		}
  		else
  		{
  			scrolls = 'no';
			resize = 'no';
			w2 = w;
  		}
	  
	   if(h > 600)
  		{
		 	scrolls = 'yes';
			resize = 'yes';
			h2 = '600';
  		}
  		else
  		{
  			scrolls = 'no';
			resize = 'no';
			h2 = h;
  		}
		
		
		//alert("w2 = "+w2+" h2= "+h2+" scrolls= "+scrolls)
OpenWindow=window.open("", "newwin", "height="+h2+", width="+w2+",toolbar=no,menubar=no,status=no,resizable="+resize);
OpenWindow.document.write("<HTML>")
OpenWindow.document.write("<TITLE>")
OpenWindow.document.write(title)
OpenWindow.document.write("</TITLE>")
 
OpenWindow.document.write("<body bgcolor=white scroll="+scrolls+" cellpadding=0 topmargin=0 leftmargin=0 cellspacing=0 border=0>")
OpenWindow.document.write("<img src="+image+" border=0 >")
OpenWindow.document.write("</BODY>")
OpenWindow.document.write("</HTML>")

OpenWindow.document.close()
self.name="main"
     }
function PopupImage(img,titre) {
	//titre="www.CAFESALE.net";
	//w=open("",'image','width=1,height=1,toolbar=no,scrollbars=no,resizable=yes');	
	w=open("",'image','width=1,height=1,toolbar=no,scrollbars=no,resizable=no');	
	w.document.write("<HTML><HEAD><TITLE>"+titre+"</TITLE></HEAD>");
	w.document.write("<SCRIPT language=javascript>function checksize()  { if (document.images[0].complete) {  window.resizeTo(document.images[0].width+15,document.images[0].height+15); window.focus();} else { setTimeout('check()',250) } }</"+"SCRIPT>");
	w.document.write("<BODY BGCOLOR=99A7A7 onload='checksize()' leftMargin=0 topMargin=0 marginwidth=0 marginheight=0><IMG src='"+img+"' border=0>");
	w.document.write("");
	w.document.write("</BODY></HTML>");
	w.document.close();
}