function sl_switch(w) {
	switch (w) {
		case 'empty' : // to empty the window.status
			wlocation = ' ';
			break;
			
		case 'home' :
			wlocation = 'http://www.fribourg-est-independant.org';
			break;
			
		case 'forum':
			wlocation = 'http://forum.fribourg-est-independant.org/forum.php';
			break;
			
		case 'fritur':
			wlocation = 'http://fritur.fribourg-est-independant.org';
			break;
			
		case 'association' :
			wlocation = 'http://frei.fribourg-est-independant.org/';
			break;
			
		case 'agenda' :
			wlocation = 'http://agenda.fribourg-est-independant.org';
			break;
			
		case 'groupes' :
			wlocation = 'http://groupes.fribourg-est-independant.org/';
			break;

		case 'next' :
			wlocation = 'http://www.fribourg-est-independant.org';
			break;
		
		case 'news' :
			wlocation = 'http://news.fribourg-est-independant.org/';
			break;

		case 'links' :
			wlocation = 'http://links.fribourg-est-independant.org/';
			break;

		default :
			wlocation = 'http://www.fribourg-est-independant.org';
		}
		
	return wlocation;
	}

function sl_goto(w) { // warning "goto()" is a reserved function of opera
	location = sl_switch(w);
	}

function sl_info(w) {
	window.status = sl_switch(w);
	return true;
	}

