<!---
function choices()
{
this[0] = 3;
this[1] = "<a href='#' onclick=\"openPage('/clav/es/bacheca.nsf/viewsocietaweb/forsel')\"><img src=\"http://logo.cambioempleo.com/logo/forselsmall.gif\" width=102 height=42 border=0 alt=\"Forsel Grupo Norte, E.T.T S.A\"></a>";
this[2] = "<a href='#' onclick=\"openPage('clav/es/bacheca.nsf/viewsocietaweb/hublance')\"><img src=\"http://logo.cambioempleo.com/logo/hublancesmall.gif\" width=102 height=42 border=0 alt=\"Hublance\"></a>";
this[3] = "<a href='#' onclick=\"openPage('/Clav/es/Bacheca.Nsf/viewsocietaweb/mercuriurvales')\"><img src=\"http://logo.cambioempleo.com/logo/mercuriurvalessmall.gif\" width=102 height=42 border=0 alt=\"Mercuri Urval S.A.\"></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();
} 
