// JScript File
function flashHomeStyle() {
    /*if (navigator.plugins && navigator.mimeTypes && navigator.mimeTypes.length) { // netscape plugin architecture 	
        var flashContainer = document.getElementById('flashObject');
	    flashContainer.className='flashnie';
    } else { // PC IE
       version=0
       if (navigator.appVersion.indexOf("MSIE")!=-1) {
           temp=navigator.appVersion.split("MSIE")
           version=parseFloat(temp[1])  
           if (version<7) {
	            var flashContainer = document.getElementById('flashObject');
	            flashContainer.className='flashie';	
	        }   
       }
           
    }*/
}