//Version de l'opac qui s'affiche en bas de page
var VERSION_OPAC =  "Microbib-Opac version 3.3";

function multisite()
{return "<h1>Le réseau</h1> <br><a href=\'#\' onClick=\'location.replace(\"../bibliotheque/index.wco\")\'>>>3, 2, 1... réseau!</a><br> <br><h1>Les lieux de lectures</h1> <br><a href=\'#\' onClick=\'location.replace(\"../bibliotheque/montalieu.wco\")\'>>>Montalieu-Vercieu</a><br> <br><a href=\'#\' onClick=\'location.replace(\"../bibliotheque/bouvesse.wco\")\'>>>Bouvesse-Quirieu</a><br> <br><a href=\'#\' onClick=\'location.replace(\"../bibliotheque/Creys.wco\")\'>>>Creys-Mépieu</a><br>";
}

//Liste des bibliothèques
var bib1='Montalieu-Vercieu';
var bib2='Bouvesse-Quirieu';
var bib3='Creys-Mépieu';

var LIST_BIB = new Array();
//	if(LireCookie(COOKIE_SITE_DEPOT)==1)
		LIST_BIB.push(new Array(bib1,1));
//		else LIST_BIB.push(new Array(bib1,1));
//	if(LireCookie(COOKIE_SITE_DEPOT)==2)
		LIST_BIB.push(new Array( bib2,2));
//		else LIST_BIB.push(new Array(bib2,2));
//	if(LireCookie(COOKIE_SITE_DEPOT)==3)
		LIST_BIB.push(new Array(bib3,3));
//		else LIST_BIB.push(new Array(bib3,3));


//LIST_BIB.push(new Array(bib4,4));
//LIST_BIB.push(new Array("",5));
//LIST_BIB.push(new Array("",6));
//LIST_BIB.push(new Array("",7));
//LIST_BIB.push(new Array("",8));
//LIST_BIB.push(new Array("",9));
//LIST_BIB.push(new Array("",10));

//Repertoire du css
var CSS_DIR = "include/";
var CSS_MAINFILE = "opac.css";

//Adaptation du css en fonction de la résolution
function includeCSS()
{
   document.write("<link rel=stylesheet type=\"text/css\" href=\"" + CSS_DIR + CSS_MAINFILE + "\" />");
   document.write("<link href=\"../include/default.css\" rel=\"stylesheet\" type=\"text/css\" />");
   document.write("<link href=\"../include/alphacube.css\" rel=\"stylesheet\" type=\"text/css\" />");
}

//Detection de la resolution pour un affichage optimal
includeCSS();

