<!---
function choices()
{
this[0] = 3;
this[1] = "<a href='#' onclick=\"openPage('http://www.cambiolavoro.com/clav/Bacheca.nsf/viewsocietaweb/euren')\"><img src=\"http://logo.cambiolavoro.com/logo/eurensmall3.gif\" width=102 height=42 border=0 alt=\"Euren InterSearch\"></a>";
this[2] = "<a href='#' onclick=\"openPage('http://www.cambiolavoro.com/clav/Bacheca.nsf/viewsocietaweb/Seles')\"><img src=\"http://logo.cambiolavoro.com/logo/Selessmall.gif\" width=102 height=42 border=0 alt=\"Seles SpA\"></a>";
this[3] = "<a href='#' onclick=\"openPage('http://www.cambiolavoro.com/clav/Bacheca.nsf/viewsocietaweb/besthritalia')\"><img src=\"http://logo.cambiolavoro.com/logo/besthritaliasmall.gif\" width=102 height=42 border=0 alt=\"Best HR Italia\"></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='ahttp://www.cambiolavoro.com/ctionbar.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();
} 
