<!--
checkFenix();

function checkFenix () 
{
    var userAg 	= navigator.userAgent;
    var bName  	= navigator.appName;
    var bVer   	= parseInt(navigator.appVersion);
	var url 	= ""+document.location;
	
    if( url.toLowerCase().indexOf("jfenix.com") <= 0 )  return;
	
    if( bVer >= 4 )
		{ show_flyer(); /*window.location.replace("http://fenix.traumton.com");*/ }
    else 
    	{
        if( bVer == 3 ) 
           // Redirect all other browsers
           { show_flyer(); /*window.location.replace("http://fenix.traumton.com");*/ }
    	else
            // Redirect all other browsers
            { show_flyer(); /*window.location.href = "http://fenix.traumton.com";*/ }
       	}  // IF Bver = 3/ELSE ... 
}

function show_flyer() {
///	var winFlyer=dhtmlwindow.open("flyerFenix", "inline", "<img src='/works/fenix/images/flyerCirandaDoMundo.jpg' alt='Flyer Ciranda do Mundo - 18/11/08'/>", 
///	    "Flyer Ciranda do Mundo", "width=650px,height=510px,resize=1,scrolling=1,center=1", "recal");
	self.location = "/works/fenix/NOVAS/cirandaDoMundo.htm";
}	
// -->