function getInternetExplorerVersion() {

    var rv = -1; // Return value assumes failure.

    if (navigator.appName == 'Microsoft Internet Explorer') {

        var ua = navigator.userAgent;

        var re = new RegExp("MSIE ([0-9]{1,}[\.0-9]{0,})");

        if (re.exec(ua) != null)

            rv = parseFloat(RegExp.$1);

    }

    return rv;

}

function checkVersion() {

    var msg = "You're not using Windows Internet Explorer.";

    var ver = getInternetExplorerVersion();

    if (ver > -1) {

        if (ver >= 8.0)
		{
            //msg = "You're using a recent copy of Windows Internet Explorer."
		}
        else
		{
            showSifr();
		}

    }
	else
	{
    showSifr();
	}

}


function showSifr()
{
var cochin = {
  src: '/images/sifr.swf'
};

var cochin1 = {
  src: '/images/sifr1.swf'
};

sIFR.activate(cochin); // From revision 209 and onwards

sIFR.replace(cochin, {
  selector: '#Content h1',
	wmode: 'transparent',  
  css: {'.sIFR-root': { 'color': '#17426F' } }

})

sIFR.replace(cochin, {
  selector: '#Content-s_two_c h1',
	wmode: 'transparent',  
  css: {'.sIFR-root': { 'color': '#17426F' } }

})


sIFR.replace(cochin, {
  selector: '#Content h2.blue',
	wmode: 'transparent',  
  css: {'.sIFR-root': { 'color': '#17426F' } }

})

sIFR.replace(cochin1, {
  selector: '#RHSBar .NeedMoreInformation p.head, #RHSBar .CaseStudy p.head',
	wmode: 'transparent',  
  css: {'.sIFR-root': { 'color': '#ffffff', 'text-transform': 'uppercase', 'font-weight': 'bold' } }

})


}

checkVersion();