<!---
function choices()
{
this[0] = 4;
this[1] = "<a href='#' onclick=\"openPage('http://www.cambiolavoro.com/clav/Bacheca.nsf/viewsocietaweb/arethusa')\"><img src=\"http://logo.cambiolavoro.com/logo/arethusasmall.gif\" width=102 height=42 border=0 alt=\"Arethusa\"></a>";
this[2] = "<a href='#' onclick=\"openPage('http://www.cambiolavoro.com/clav/Bacheca.nsf/viewsocietaweb/alleanza')\"><img src=\"http://logo.cambiolavoro.com/logo/alleanzasmall.gif\" width=102 height=42 border=0 alt=\"Alleanza Assicurazioni S.p.A.\"></a>";
this[3] = "<a href='#' onclick=\"openPage('http://www.cambiolavoro.com/clav/Bacheca.nsf/viewsocietaweb/generali')\"><img src=\"http://logo.cambiolavoro.com/logo/generalismall.gif\" width=102 height=42 border=0 alt=\"Assicurazioni Generali SpA \"></a>";
this[4] = "<a href='#' onclick=\"openPage('http://www.cambiolavoro.com/clav/Bacheca.nsf/viewsocietaweb/ina')\"><img src=\"http://logo.cambiolavoro.com/logo/inasmall.gif\" width=102 height=42 border=0 alt=\"Ina Assitalia\"></a>";
}
function popUpBanner(list)
{ 
var today = new Date();
var choiceInstance = new choices();
var Banner = choiceInstance[(today.getSeconds() % choiceInstance[0]) + 1];
}
function grabBanner()
{
var today = new Date();
var choiceInstance = new choices();
var Banner = choiceInstance[(today.getSeconds() % choiceInstance[0]) + 1];
return Banner;
}
document.writeln(grabBanner());
// FINE --->
function openPage (the_url) {
	var popwindow=window.open("", '', 'menubar=yes,scrollbars=yes,resizable=yes,width=750,height=500');
	popwindow.document.writeln("<html>");
	popwindow.document.writeln("<head>");
	popwindow.document.writeln("<title>Annunci in tempo reale</title>");	
	popwindow.document.writeln("</head>");	
	popwindow.document.writeln("<frameset rows='30,*' framespacing='0' border='0'>");	
	popwindow.document.writeln("<frame name='ACTIONBAR' src='http://www.cambiolavoro.com/actionbar.htm' noresize scrolling='NO' frameborder='0'  marginwidth='0'>");	
	popwindow.document.writeln("<frame name='CONTENUTO' src='"+the_url+"' noresize scrolling='AUTO' frameborder='0'  marginwidth='5'>");
	popwindow.document.writeln("</frameset>");
	popwindow.document.writeln("</html>");	
	popwindow.focus();
} 
