opera = (navigator.userAgent.indexOf('Opera') >= 0)? true : false;
dom = (document.getElementById)? true : false;
ie4 = (document.all && !dom)? true : false;
nn4 = (document.layers)? true : false;


function getElement( elemId )
{
    if (dom)
        return document.getElementById(elemId);
    else
        if (ie4)
            return document.all[elemId];
        else
            if (nn4)
                return document.layers[elemId];
    return null;
} 


function showFlv(url,width,height,name){
	
	if (!width){var width=500;}
	if (!height){var height=375;}
	
	
	AC_FL_RunContent(
			'codebase',			'http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,0,0',
			'width',			width,
			'height',			height,
			'src',				'/includes/player',
			'quality',			'high',
			'pluginspage',		'http://www.macromedia.com/go/getflashplayer',
			'align',			'middle',
			'play',			'true',
			'loop',			'false',
			'scale',			'showall',
			'wmode',			'window',
			'devicefont',		'false',
			'id',				'flvPlayer',
			'bgcolor',			'#ffffff',
			'name',			'flvPlayer',
			'menu',			'false',
			'allowFullScreen',	'true',
			'allowScriptAccess','always',
			'movie',			'/includes/player',
			'FlashVars',		'way='+url+'&amp;swf=/includes/player.swf&amp;w='+width+'&amp;h='+height+'&amp;pic=&amp;autoplay=0&amp;tools=2&amp;skin=white&amp;volume=70&amp;q=&amp;noembed=1&amp;comment='+name,
			'salign', 			''
			); //end AC code
	
}

