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

link.push("faq.htm");
link.push("rassegna_stampa.htm");
link.push("sedi_congressuali.htm");
link.push("definizioni.htm");
link.push("vantaggi_congressi.htm");
link.push("scegliere_servizi.htm");
link.push("download.htm");


text.push("FAQ");
text.push("Rassegna stampa");
text.push("Sedi congressuali");
text.push("Definizioni");
text.push("Le finalit&agrave; di un congresso");
text.push("Perch&eacute; scegliere i nostri servizi");
text.push("Download");


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);
}

}


