/* Stop Arnak Casting.org - 27/02/2005 -

   Description :	Compilation de scripts utiles
   Auteur :		IM Antoine
*/


/* Script d'activation d'ouverture de liens dans nouvelle fenï¿½re */

function externalLinks()
{
  if ( !document.getElementsByTagName ) return ;
  var anchors = document.getElementsByTagName ( "a" ) ;
  for ( var i = 0 ; i < anchors.length ; i++ )
  {
    var anchor = anchors[i] ;
    if ( anchor.getAttribute ( "href" ) && anchor.getAttribute ( "rel" ) == "external" )
      anchor.target = "_blank" ;
  }
}

window.onload = externalLinks ;


/* Sortie de frames au cas ou */

if ( window != top ) { top.location = window.location ; }
if ( parent.frames.length != 0 ) parent.location.href = location.href ;


/* Agrandir une image */

function affiche ( fichier, largeur, hauteur )
{
  var posx = ( screen.width - largeur ) / 2 ;
  var posy = ( screen.height - hauteur ) / 2 ;
  window.open ( "../scripts/agrandir.php?fichier=" + fichier , "" , "left="+posx+",top="+posy+",width="+largeur+",height="+hauteur+",status=no,toolbar=no,menubar=no,scrollbars=no,resizable=no" ) ;
}

/* Affiche la charte de confidentialite */

function affiche_charte ( largeur, hauteur )
{
  var posx = ( screen.width - largeur ) / 2 ;
  var posy = ( screen.height - hauteur ) / 2 ;
  window.open ( "../scripts/charte_confidentialite.php" , "" , "left="+posx+",top="+posy+",width="+largeur+",height="+hauteur+",status=no,toolbar=no,menubar=no,scrollbars=no,resizable=no" ) ;
}

function affiche_charte_it ( largeur, hauteur )
{
  var posx = ( screen.width - largeur ) / 2 ;
  var posy = ( screen.height - hauteur ) / 2 ;
  window.open ( "../scripts/charte_confidentialite_it.php" , "" , "left="+posx+",top="+posy+",width="+largeur+",height="+hauteur+",status=no,toolbar=no,menubar=no,scrollbars=no,resizable=no" ) ;
}

/* Nouveau sondage */

function sondage ( )
{
  var largeur = 580 ;
  var hauteur = 450 ;
  var posx = ( screen.width - largeur ) / 2 ;
  var posy = ( screen.height - hauteur ) / 2 ;
  window.open ( "../scripts/sondages.php" , "" , "left="+posx+",top="+posy+",width="+largeur+",height="+hauteur+",status=no,toolbar=no,menubar=no,scrollbars=no,resizable=no" ) ;
}

function deconnecte ( )
{
  if ( window.confirm ( "Etes-vous sûr de vouloir vous déconnecter ?" ) )
  {
    top.location.href = "../page_identification.php?rub=logout" ;
  }
}

function deconnecte_anglais ( )
{
  if ( window.confirm ( "Are you sure you want to disconnect ?" ) )
  {
    top.location.href = "../page_identification.php?rub=logout" ;
  }
}