// JavaScript Document
function FindMyBrowser()
    {
        if(navigator.platform.indexOf('Win') > -1)
        {        
            if ((navigator.appName == "Microsoft Internet Explorer"))// && (navigator.appVersion == "6.0"))
            {
                var browser=navigator.appName;
                var b_version=navigator.appVersion;
                if (b_version.indexOf("6.0") > -1)
                {
                    document.getElementById("v8_topnav").style.paddingBottom = "0px";  
                    document.getElementById("search_box").style.marginTop = "-1px";
                    document.getElementById("search_box").style.height = "16px";   
                    document.getElementById("search_box").style.marginRight = "2px";                                                              
                }
                if (b_version.indexOf("7.0") > -1)
                {                    
                    document.getElementById("v8_topnav").style.paddingBottom = "4px"; 
                    //document.getElementById("search").style.marginBottom = "3px";
                    //document.getElementById("search_box").style.marginTop = "0px";
                    document.getElementById("search_box").style.height = "16px"; 
                }
					
            }
            else if(navigator.appName == "Netscape")
            {
                var ua = navigator.userAgent.toLowerCase();
                if((ua.indexOf( "firefox" ) != -1) && (navigator.vendor != "Apple Computer, Inc."))
                {
                    document.getElementById("v8_topnav").style.paddingBottom = "4px";
                    //document.getElementById("search").style.marginBottom = "3px";
                    document.getElementById("search_box").style.marginRight = "4px";
                    //document.getElementById("search_box").style.marginTop = "1px";
                    document.getElementById("search_box").style.height = "16px";
                    
                    if(document.getElementById("padding_moz") != null)
					    document.getElementById("padding_moz").style.paddingTop = "4px";
                    }
                else if(navigator.vendor = "Apple Computer, Inc.")
                {
                // alert("Apple Computer, Inc.");            
                    var sb_version=navigator.appVersion;
                    if(sb_version.indexOf("3.0.2") > -1)
                    {                   
                        // alert(sb_version.indexOf("3.0.2") > -1);
                        document.getElementById("v8_topnav").style.marginTop = "0px"; 
                        document.getElementById("v8_topnav").style.paddingBottom = "0px";	
			            document.getElementById("v8_topnav").style.paddingBottom = "4px";
                    }
                    else if(sb_version.indexOf("3.0.3") > -1)
                    {                   
                        //alert(sb_version.indexOf("3.0.3") > -1);
                        document.getElementById("v8_topnav").style.marginTop = "0px"; 
                        document.getElementById("v8_topnav").style.paddingBottom = "0px";	
			            document.getElementById("v8_topnav").style.paddingBottom = "4px";			           
                    }                                
               }           
            } 
        }
         else// if(navigator.platform.indexOf('Mac') > -1)
        {
            document.getElementById("v8_topnav").style.marginTop = "0px"; 
            document.getElementById("v8_topnav").style.paddingBottom = "0px";
	        document.getElementById("v8_topnav").style.paddingBottom = "4px";
            document.getElementById("search").style.marginBottom = "3px";
            
            document.getElementById("search_box").style.marginTop = "1px";
            
            //alert("firefox");
 
            if(navigator.vendor = "Apple Computer, Inc.")
            {                           
                document.getElementById("v8_topnav").style.paddingBottom="4px";                  
                document.getElementById("v8_topnav").style.height = "32px";
                document.getElementById("search_box").style.height = "16px";   
                document.getElementById("search_box").style.marginRight = "2px";
            }
            document.getElementById("search_box").style.marginRight = "2px";
            document.getElementById("search_box").style.height = "16px";
        }  
    }