function lecteur(type,valeur){
	
	height=372;
	if (navigator.appVersion.indexOf('Chrome')>0){height=height+52;}
	
	if(type=="direct"){
	newwindow=window.open('lecteur/','lecteur','height='+height+',width=768,resizable=no,scrollbars=no');
	if (window.focus) {newwindow.focus()}
	}
	else if(type=="actualites"){
	newwindow=window.open('lecteur/?lecteur=actualites','lecteur','height='+height+',width=768,resizable=no,scrollbars=no');
	if (window.focus) {newwindow.focus()}
	}
	else if(type=="demande" && valeur!=""){
	newwindow=window.open('lecteur/?lecteur=demande&fichier='+valeur,'lecteur','height='+height+',width=768,resizable=no,scrollbars=no');
	if (window.focus) {newwindow.focus()}
	}
	else if(type=="demande" && valeur==""){
	newwindow=window.open('lecteur/?lecteur=demande','lecteur','height=='+height+',width=768,resizable=no,scrollbars=no');
	if (window.focus) {newwindow.focus()}
	}
	else if(type=="balado" && valeur!=""){
	newwindow=window.open('lecteur/?lecteur=balado&id='+valeur,'lecteur','height=='+height+',width=768,resizable=no,scrollbars=no');
	if (window.focus) {newwindow.focus()}
	}
	else if(type=="tv" && valeur==""){
	newwindow=window.open('lecteur/?lecteur=tv','tv','height=='+height+',width=768,resizable=no,scrollbars=no');
	if (window.focus) {newwindow.focus()}
	}
	else if(type=="tv" && valeur!=""){
	newwindow=window.open('lecteur/?lecteur=tv&fichier='+valeur,'tv','height=='+height+',width=768,resizable=no,scrollbars=no');
	if (window.focus) {newwindow.focus()}
	}
}

function opencontacts(){
myRef = window.open('contacts.php','Contacts',
'left=100,top=100,width=550,height=580,toolbar=0,resizable=0,scrollbars=1');
myRef.focus();
}

function openpicture(photo,album,width,height){
var chemin="pages/photos/voir.php?album="+album+"&photo="+photo;
var props="left=100,top=100,width="+width+",height="+height+",toolbar=0,resizable=0";

myRef = window.open(chemin, 'photo', props);
myRef.resizeTo(width,height);
myRef.focus();
}

function showhideemission(id) {
       var e = document.getElementById(id);
       if(e.style.display == 'block')
          e.style.display = 'none';
       else
          e.style.display = 'block';
    }
	
$(function() {
   $('.slideshow').cycle({
        fx: 'fade',
        pager: '#nav',
		timeout: 5000,
		pagerEvent: 'click', 
    	fastOnEvent: true,
		pauseOnPagerHover: true,
		pause: 1,
		before:      function() {  
          changedesc("out");
    } ,
	after:      function() { 
          changedesc("in", $(this).attr("title"));
    }
    });
});

function changedesc(action, titre){
	
	if(action=="in")
	{
		if(titre.replace(/\s/g,"") != "")
		{
		$('#slideshowdesc').html(titre);
    	$('#slideshowdesc').fadeIn("fast");	
		}
	}
	else if(action=="out")
	{
		$('#slideshowdesc').hide();
	}
	
}

function actualitesplus(choix){
	
	if (choix==0)
	{
		$("#actualitesplus").html("<a href='index2.php?page=actualites'>> Cliquez-ici pour toutes les actualités régionales</a>");
	}
	else if (choix==1)
	{
		$("#actualitesplus").html(" > Écoutez toutes vos nouvelles en audio");
	}
	else if (choix==2)
	{
		$("#actualitesplus").html(" > Abonnez-vous à notre balado d'actualités sur iTunes");
	}
	else if (choix==3)
	{
		$("#actualitesplus").html(" > Abonnez-vous à notre fil RSS pour suivre l'actualité en direct");
	}
	else
	{
		$("#actualitesplus").html(" > Cliquez-ici pour toutes les actualités régionales");
	}
	
	
	}
