	function style(){
		var agt=navigator.userAgent.toLowerCase();
		
		// *** Control CSS ***
		var css_default = ('<link rel="stylesheet" type="text/css" href="http://ladpw.org/library/styles/default.css" title="styles">');
		var css_mac_ns4 = ('<link rel="stylesheet" type="text/css" href="http://ladpw.org/library/styles/mac_ns4.css" title="styles">');
		var css_mac_ns = ('<link rel="stylesheet" type="text/css" href="http://ladpw.org/library/styles/mac_ns.css" title="styles">');
		var css_mac_ie4 = ('<link rel="stylesheet" type="text/css" href="http://ladpw.org/library/styles/mac_ie4.css" title="styles">');
		var css_mac_ie5 = ('<link rel="stylesheet" type="text/css" href="http://ladpw.org/library/styles/mac_ie5.css" title="styles">');
		var css_win_ns = ('<link rel="stylesheet" type="text/css" href="http://ladpw.org/library/styles/win_ns.css" title="styles">');
		var css_win_ns4 = ('<link rel="stylesheet" type="text/css" href="http://ladpw.org/library/styles/win_ns4.css" title="styles">');
		var css_unix_ns = ('<link rel="stylesheet" type="text/css" href="http://ladpw.org/library/styles/unix_ns.css" title="styles">');
		
		// *** BROWSER ***
		var is_major = parseInt(navigator.appVersion);
		var is_nav  = ((agt.indexOf('mozilla')!=-1) && (agt.indexOf('spoofer')==-1)
	                    && (agt.indexOf('compatible') == -1) && (agt.indexOf('opera')==-1)
	                    && (agt.indexOf('webtv')==-1));
	    
		var is_nav4 = (agt.indexOf('mozilla/4') != -1);

		var is_ie   = (agt.indexOf("msie") != -1);
		var is_ie5  = (is_ie && (is_major == 4) && (agt.indexOf("msie 5.0")!=-1) );
		var is_aol   = (agt.indexOf("aol") != -1);
	
		// *** PLATFORM ***
		var is_win   = ( (agt.indexOf("win")!=-1) || (agt.indexOf("16bit")!=-1) );
		var is_mac    = (agt.indexOf("mac")!=-1);
	    	
		if (is_mac == true) {
			if (is_nav == true) {
				if (is_nav4 == true) {
					//navigator version 4.x
					document.write(css_mac_ns4);
				} else {
					//NOT navigator version 4.x
					document.write(css_mac_ns);
				}
			} else if (is_ie == true && is_aol == false && is_ie5 == false) {
				document.write(css_mac_ie4);
			} else if (is_ie == true && is_aol == false && is_ie5 == true) {
				document.write(css_mac_ie5);
			} else if (is_aol == true) {
				document.write(css_mac_ie4);
			} else  {
				document.write(css_default);
			}
		}	
		else if (is_win == true) {
			if (is_nav == true) {
				if (is_nav4 == true) {
					//navigator version 4.x
					document.write(css_win_ns4);
				} else {
					//NOT navigator version 4.x
					document.write(css_win_ns);
				}				
			} else if (is_ie == true && is_aol == false) {
				document.write(css_default);
			} else if (is_aol == true) {
				document.write(css_default);
			} else  {
				document.write(css_default);
			}
		}
		else if (is_win != true && is_mac != true){
			if (is_ie == true){
				document.write(css_default);
			} else {
				document.write(css_unix_ns);
			}
		}		
		else {document.write(css_default);
		}
	}