/*******************************************************
 *
 * java.js
 *
 * Fonctions de controle JavaScript applicables a ce site
 * 
 * Frog, http://www.frog3.com
 *
 *******************************************************/

testEmail = 0;

//------------------------------------------------------
// affichage copyrigth
//------------------------------------------------------
function copyright (mabase)
{
dev=window.open ("copyright.php", "copyright", config='fullscreen=no,height=200,width=300,resizable=0,toolbar=0,menubar=0,location=0,scrollbars=0,directories=0,status=0,copyhistory=0');
}

//------------------------------------------------------
// affichage promo
//------------------------------------------------------
function promo (mabase)
{
dev=window.open ("promo.php", "promotion", config='fullscreen=no,height=480,width=640,resizable=1,toolbar=0,menubar=0,location=0,scrollbars=1,directories=0,status=0,copyhistory=0');
}

//------------------------------------------------------
// affichage article / zoom
//------------------------------------------------------
function zoom (mabase)
{
dev=window.open (mabase, "zoom", config='fullscreen=no,height=520,width=700,resizable=1,toolbar=0,menubar=0,location=0,scrollbars=1,directories=0,status=0,copyhistory=0');
}

//------------------------------------------------------
// publicité
//------------------------------------------------------
function testtop (mabase)
{
pub=window.open ("pub.htm", "Villepinte", config='fullscreen=no,height=300,width=600,resizable=0,toolbar=0,menubar=0,location=0,scrollbars=0,directories=0,status=0,copyhistory=0');
}


//======================================================
// Verifier la validite de l'email en cherchant un @
//======================================================

function testemail(Form) 
{
if (Form.Email.value == "" ||
  Form.Email.value.indexOf('@', 0) == -1)
  {    
  alert("Email non valide!");   
  Form.Email.focus();
  }
} 

