		/***************************************************
		* This script is Copyrighted!!!                    *
		* ==============================                   *
		* Do not use this script unless you have asked me  *
		* first and got approval from me!                  *
		* If approved, also leave the text as it is.       *
		*                                                  *
		* Copyright - Mattias Isene - www.evoliq.com       *
		***************************************************/
    
    var LinkRelStart = "<link rel=stylesheet href=\"";
    var cssIE="evoliqCSSIE.css"
    var cssOther="evoliqCSSother.css"
		var LinkRelEnd = "\">";
		
    
    /***************************************************
     *  The Browser Detect Script                      *
     **************************************************/       

                             
    var browser=navigator.appName;
    var b_version=navigator.appVersion;
    var version=parseFloat(b_version);

      
    /***************************************************
     *  The Output                                     *
     **************************************************/       
    
    if (browser == "Microsoft Internet Explorer") {
		    document.write(LinkRelStart + cssIE + LinkRelEnd);
				}
				else {
            document.write(LinkRelStart + cssOther + LinkRelEnd);
        }
