﻿var player1 = null;        
        function createPlayer(file) {
            var so1 = new SWFObject("flash/player.swf", "jstest1", "240", "180", "9", "#FFFFFF");
            so1.addParam("allowfullscreen", "true");
            so1.addParam("allownetworking", "all");
            so1.addParam("allowscriptaccess", "always");
            so1.addParam("wmode", "transparent");

            
            so1.addVariable("autostart", "true");
            so1.addVariable("icons", "false");
            so1.addVariable("image", "flash/preview.jpg");
            so1.addVariable("file", file);
            so1.write('player1');
        };
        jQuery(document).ready(function() {
          createPlayer('gfm2010.flv');
        });



function TestConformite() {

    var isErreur = false;

    if (!TestTelephone(GetObj('ptelephone'), GetObj('ltelephone'), 'err_telephone')) isErreur = true;
    
    if (!TestChaineLabel(GetObj('ptelephone'), GetObj('ltelephone'))) isErreur = true;
    if (!TestChaineLabel(GetObj('captcha'), GetObj('lcaptcha'))) isErreur = true;
    if (!isErreur) {
        $get(GetObj('BtnContact')).click();
        return true;
    }
    return false;
}        
