function isValidEmail (email)
{
    return (/^([a-z0-9_\-]+\.)*[a-z0-9_\-]+@([a-z0-9][a-z0-9\-]*[a-z0-9]\.)+[a-z]{2,4}$/i).test(email);
}
    
window.addEvent('domready',function(){
    
    if (document.getElementById('mp3-player')) {
        swfobject.embedSWF(
            '/flash/player.swf',
            'mp3-player',
            '64',
            20,
            '9.0.0',
            '/flash/expressInstall.swf',
            {},
            {
                'allowScriptAccess':	'always',
                'allowFullScreen':		'false',
                'scale':				'noscale',
                'salign':				'tl',
                'wmode':                'transparent'
            },
            {
                'id':					'index-mp3player',
                'name':					'index-mp3player',
                'align':				'middle'
            }
            );
    }
    

});


