﻿<!--
	var Win   = navigator.userAgent.indexOf("Win") != -1 ? true : false 
    var Mac   = navigator.userAgent.indexOf("Mac") != -1 ? true : false 
    var X11   = navigator.userAgent.indexOf("X11") != -1 ? true : false 
	var IE    = navigator.userAgent.indexOf("MSIE") != -1 ? true : false  
  
if (document.getElementById) {
	if (IE)    cssurl = "/_bin/wp/wp-content/themes/hanabusa/ie.css"
	else     cssurl = "/_bin/wp/wp-content/themes/hanabusa/other.css"
}

if (document.all) {

    if (Win)     cssurl = "/_bin/wp/wp-content/themes/hanabusa/ie.css"
    else if(Mac) cssurl = "/_bin/wp/wp-content/themes/hanabusa/ie.css"
	
} else if (document.layers) {
  
    if (Win)     cssurl = "/_bin/wp/wp-content/themes/hanabusa/other.css"
    else if(Mac) cssurl = "/_bin/wp/wp-content/themes/hanabusa/other.css"
    else if(X11) cssurl = "/_bin/wp/wp-content/themes/hanabusa/other.css"
  
  } else {
                 cssurl ="/_bin/wp/wp-content/themes/hanabusa/other.css"
  }

  document.write('<link rel="stylesheet" ')
  document.write('      type="text/css"  ')
  document.write('      href="'+cssurl+'"')
  document.write('>')
//-->