// Determine browser and apply appropriate stylesheet

if (is_ie5up){
  document.write("<link rel='stylesheet' type='text/css' href='style_ie.css'>") // IE
  }
  else{
  	if (is_opera5up){
   		document.write("<link rel='stylesheet' type='text/css' href='style_opera.css'>") // Opera <3
   		}
		else{
			if (is_gecko){
			document.write("<link rel='stylesheet' type='text/css' href='style_mozilla.css'>") // Mozilla
			}
			else{
			document.write("<link rel='stylesheet' type='text/css' href='style_other.css'>") //all other browsers
			}
		}
	}