//-------------------------------------------------------------------\\
//---           jean DUMAS - www.systmd.com - 04/01/2010          ---\\
//---    Libre d'utilisation à condition de laisser cet encart    ---\\
//---             Free to use if you leave this insert            ---\\
//-------------------------------------------------------------------\\
function GetParam(name) 
{ 
 var start=location.search.indexOf("?"+name+"=" ); 
 if (start<0) start=location.search.indexOf("&"+name+"=" ); 
 if (start<0) return ''; 
 start += name.length+2; 
 var end=location.search.indexOf("&",start)-1; 
 if (end<0) end=location.search.length; 
 var result=''; 
 for(var i=start;i<=end;i++) { 
  var c=location.search.charAt(i); 
  result=result+(c=='+'?' ':c); 
 } 
 return unescape(result); 
} 

function actu()
{
str=GetParam("Page");
switch(str) 
{ 
case 'accueil'		  : PageIndex.window.location = ("./pag/accueil.html");break; 
case 'sophrologie'	  : PageIndex.window.location = ("./pag/sophro.html");break; 
case 'fibromyalgie'	  : PageIndex.window.location = ("./pag/fibromyalgie.html");break; 
case 'bach'  		  : PageIndex.window.location = ("./pag/bach.html");break; 
case 'boutique'		  : PageIndex.window.location = ("./pag/boutique.html");break; 
case 'entreprise'	  : PageIndex.window.location = ("./pag/entreprise.html");break; 
case 'tarifs'		  : PageIndex.window.location = ("./pag/tarifs.html");break; 
case 'publications'	  : PageIndex.window.location = ("./pag/publications.html");break; 
case 'liens'		  : PageIndex.window.location = ("./pag/liens.html");break; 
case 'contact'        : PageIndex.window.location = ("./pag/contact.html");break; 
case 'legal'          : PageIndex.window.location = ("./pag/legal.html");break; 
case 'questce'        : PageIndex.window.location = ("./pag/questce.html");break; 
case 'comment'        : PageIndex.window.location = ("./pag/comment.html");break; 
case 'groupes'        : PageIndex.window.location = ("./pag/groupes.html");break; 
case 'applications'   : PageIndex.window.location = ("./pag/applications.html");break; 
case 'resabonscadeaux': PageIndex.window.location = ("./pag/resabonscadeaux.html");break; 
case 'actualite'	  : PageIndex.window.location = ("./pag/actualite.html");break; 
case 'yannick_noah'   : PageIndex.window.location = ("./pag/yannick_noah.html");break; 
case 'plan'           : PageIndex.window.location = ("./pag/plan.html");break; 
case 'massage'        : PageIndex.window.location = ("./pag/massage.html");break; 
case 'prestation'     : PageIndex.window.location = ("./pag/prestation.html");break; 
case 'evenement'      : PageIndex.window.location = ("./pag/evenement.html");break; 
case 'cabinet'      : PageIndex.window.location = ("./pag/cabinet.html");break; 
case 'parution'      : PageIndex.window.location = ("./pag/parution.html");break; 
case 'accessoire'      : PageIndex.window.location = ("./pag/accessoire.html");break; 
default: PageIndex.window.location = ("./pag/accueil.html");break; 
}

}
