function jspagination (posiz) {
link = new Array();
text = new Array();
indref = new Array();

indref.push (0);link.push ("indref.htm");text.push ("referenze");
indref.push (1);link.push ("clienti.htm");text.push ("I nostri Clienti");
indref.push (2);link.push ("associazioni_appartenenza.htm");text.push ("Associazioni di appartenenza");
indref.push (3);link.push ("alcuni_eventi.htm");text.push ("Alcuni eventi");
indref.push (4);link.push ("altri_eventi.htm");text.push ("Altri eventi");
indref.push (5);link.push ("feedback.htm");text.push ("Alcuni feedback");
indref.push (6);link.push ("PHOTO.htm");text.push ("Photo gallery");
indref.push (7);link.push ("iso9001.htm");text.push ("Qualit&agrave;");

posiz=indref[posiz];

lungvett=text.length;
if (posiz==0) {
	document.write('<span class="disabled"><<</span>');
} else {
	linkstamp='<a href="'+link[posiz-1]+'" alt="'+text[posiz-1]+'" title="'+text[posiz-1]+'"><<</a>';
	document.write(linkstamp);
}

stamp='<span class="current">'+text[posiz]+'</span>';
document.write(stamp);


if (posiz+1==lungvett) {
	document.write('<span class="disabled">>></span>');
} else {	
	linkstamp='<a href="'+link[posiz+1]+'" alt="'+text[posiz+1]+'" title="'+text[posiz+1]+'">>></a>';
	document.write(linkstamp);
}

}


