<!---
function choices()
{
this[0] = 3;
this[1] = "<a href='#' onclick=\"openPage('/clav/es/bacheca.nsf/viewsocietaweb/legaria')\"><img src=\"http://logo.cambioempleo.com/logo/legariasmall.gif\" width=102 height=42 border=0 alt=\"Legaria Gestión E.T.T.\"></a>";
this[2] = "<a href='#' onclick=\"openPage('/clav/es/bacheca.nsf/viewsocietaweb/hybris')\"><img src=\"http://logo.cambioempleo.com/logo/hybrissmall.gif\" width=102 height=42 border=0 alt=\"Hybris RRHH\"></a>";
this[3] = "<a href='#' onclick=\"openPage('/Clav/es/Bacheca.Nsf/viewsocietaweb/multipurpose')\"><img src=\"http://logo.cambioempleo.com/logo/multipurposesmall.gif\" width=102 height=42 border=0 alt=\"Multipurpose S.L.\"></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>Anuncios en tiempo real</title>");	
	popwindow.document.writeln("</head>");	
	popwindow.document.writeln("<frameset rows='30,*' framespacing='0' border='0'>");	
	popwindow.document.writeln("<frame name='ACTIONBAR' src='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();
} 
