﻿// JavaScript Document
	
// set Mac CSS
if(navigator.userAgent.indexOf("Mac") != -1){
	if (navigator.userAgent.indexOf("Safari") != -1) {
		document.write("<link rel=stylesheet type=text/css href=" + strPath + "system_styles/macSafari.css>");
		}
	if (navigator.userAgent.indexOf("Firefox") != -1) {
		document.write("<link rel=stylesheet type=text/css href=" + strPath + "system_styles/macFF.css>");
		}
	}
	
// Set Windows CSS
if(navigator.userAgent.indexOf("Win") != -1){
	if (navigator.userAgent.indexOf("MSIE 7") != -1) {
		document.write("<link rel=stylesheet type=text/css href=" + strPath + "system_styles/ie7.css>");
		}
	if (navigator.userAgent.indexOf("MSIE 6") != -1){
		document.write("<link rel=stylesheet type=text/css href=" + strPath + "system_styles/ie6.css>");
		}	
	}


