function produkti(ima,w,h){
myWindow = window.open("", "Prodotto", 'toolbar=0,width='+w+',height='+h) 
myWindow.document.write("<title>"+document.title+"</title><body style='margin-left: 0px;	margin-top: 0px; margin-right: 0px; margin-bottom: 0px;'><a href='#'><img src='"+ima+"' onClick=\"window.close();\" border=0 alt='Clicca qua per chiudere'></a>")
myWindow.document.bgColor="white"
myWindow.document.close();
}

function produkti2(ima,w,h,testo){
myWindow = window.open("", "Prodotto", 'toolbar=0,width='+w+',height='+h) 
myWindow.document.write("<title>"+document.title+"</title><body style='margin-left: 0px;	margin-top: 0px; margin-right: 0px; margin-bottom: 0px;'><a href='#'><img src='"+ima+"' onClick=\"window.close();\" border=0 alt='Clicca qua per chiudere'></a><br><font face=arial size=2 color=black>"+testo+"</font>")
myWindow.document.bgColor="white"
myWindow.document.close();
}

function mappa(){
myWindow = window.open("", "Mappa", 'toolbar=0,width=465,height=420');
myWindow.document.write("<title>Mappa</title><body style='margin-left: 0px;	margin-top: 0px; margin-right: 0px; margin-bottom: 0px;'><object classid=\"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000\" codebase=\"http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0\" width=\"465\" height=\"420\"><param name=\"movie\" value=\"mappa.swf\"><param name=\"quality\" value=\"high\"><embed src=\"mappa.swf\" quality=\"high\" pluginspage=\"http://www.macromedia.com/go/getflashplayer\" type=\"application/x-shockwave-flash\" width=\"465\" height=\"420\"></embed></object>")
myWindow.document.bgColor="white"
myWindow.document.close();
}


function indietro(){
history.go(-1);
}
function avanti(){
history.go(+1);
}