<!---
function choices()
{
this[0] = 3;
this[1] = "<a href='#' onclick=\"openPage('/Clav/es/Bacheca.Nsf/viewsocietaweb/mnemo')\"><img src=\"http://logo.cambioempleo.com/logo/mnemosmall.gif\" width=102 height=42 border=0 alt=\"Mnemo Evolution & Integration Services, S.A.\"></a>";
this[2] = "<a href='#' onclick=\"openPage('/Clav/es/Bacheca.Nsf/viewsocietaweb/kellyes')\"><img src=\"http://logo.cambioempleo.com/logo/kellyessmall.gif\" width=102 height=42 border=0 alt=\"Kelly Services Empleo ETT, S.L.\"></a>";
this[3] = "<a href='#' onclick=\"openPage('/Clav/es/Bacheca.Nsf/viewsocietaweb/ipn')\"><img src=\"http://logo.cambioempleo.com/logo/ipnsmall.gif\" width=102 height=42 border=0 alt=\"IPN - Sistemas de Decisión\"></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();
} 
