	<!--	
	var apple = navigator.appVersion.indexOf("Mac");							// checks for MAC
	var netscape = navigator.appName.indexOf("scape");							// check for NETSCAPE

	netscape > 1 ? browser = "net" : browser = "ie";							// define browser
	if (apple > 1) {
		platform = "mac";														// is MAC
		if (navigator.appVersion.indexOf("MSIE 3.0") > 1) { platform = "pc"; }  // check for MAC IE 5.0
	} else { platform = "pc"; }													// is PC

//  if (window.location.host.indexOf("cpa2biz.com") > 0)
//    document.domain = "cpa2biz.com";
//  else
//  { var cPos = window.location.host.indexOf(":");
//    if (cPos > 0)
//      document.domain = window.location.host.substring(0,cPos);
//    else
//      document.domain = window.location.host;
//  }    
	document.write('<LINK REL="stylesheet" HREF="assets/css/style_' + platform + '_' + browser + '.css" TYPE="text/css">');
	document.write('<LINK REL="stylesheet" HREF="assets/css/aicpa.css" TYPE="text/css">');
	document.write('<LINK REL="stylesheet" HREF="assets/css/prefs.css" TYPE="text/css">');
	//--> 