<!--

function isPC() {
    if (navigator.appVersion.indexOf("Win") != -1) return true;
    if (navigator.appVersion.indexOf("5.0") != -1) return true;	
    else return false;
}

function isMac() {
	if (navigator.appName.indexOf("Netscape") != -1) return true;
      if (navigator.appVersion.indexOf("4.5") != -1) return true;
    else return false;
}



if (isPC()) {
document.write('<LINK REL="stylesheet" TYPE="text/css" HREF="styles/highstorrs-pcchoosestyle.css">');
}
else if(isMac()) {
document.write('<LINK REL="stylesheet" TYPE="text/css" HREF="styles/highstorrs-macchoosestyle.css">');
}

// -->

