// JavaScript Document

function rileva_browser()
{
	browser = navigator.appName
	return browser
}

function disegna_anteprima(link1,immagine,img_w,img_h,x,y,id) {
  //Per Mozzilla e Netscape
  browser=rileva_browser()
  if(browser=="Netscape")
  	 x+=3;
  //----------------------------

  jg1.drawImageLink("/images/"+immagine, link1+"?id_film=" + id,"Scheda del film",x,y, img_w, img_h); 
  jg1.paint();
}

function disegna_anteprima2(link1,immagine,img_w,img_h,x,y,id) {
  jg1.drawImageLink("/images/"+immagine, link1+"?id_film=" + id,"Scheda del film",x,y, img_w, img_h); 
  jg1.paint();
}



