<!--
browser_version= parseInt(navigator.appVersion);
browser_type = navigator.appName;
browser_agent = navigator.userAgent;
platform = navigator.platform;

if (platform == "Mac68k") {
document.write("<link REL=\"stylesheet\" HREF=\"http://technology.shu.edu/webdev/styles/mac.css\" TYPE=\"text/css\">");
document.write("<body background=\"http://www.arts-in-company.com/paper/images/ricepapr.jpg\" bgcolor=\"#FFFFFF\">");
// window.alert("I just wrote the body tag out!!! \n\nYou are using the Mac Style Sheet!");
}

else if (browser_type == "Netscape" && (browser_version < 4)) {
document.write("<link REL=\"stylesheet\" HREF=\"http://www.arts-in-company.com/paper/styles/ns3.css\" TYPE=\"text/css\">");
// window.alert("You are using the Netscape 3 Style Sheet!");
}

else if (browser_type == "Netscape" && (browser_version > 4)) {
document.write("<link REL=\"stylesheet\" HREF=\"http://www.arts-in-company.com/paper/styles/paper.css\" TYPE=\"text/css\">");
// window.alert("You are using the Normal Style Sheet!");
}

else if (browser_type == "Netscape" && (browser_version = 4)) {
document.write("<link REL=\"stylesheet\" HREF=\"http://www.arts-in-company.com/paper/styles/ns4.css\" TYPE=\"text/css\">");
// window.alert("You are using the Netscape 4 Style Sheet!");
}


else if (browser_type == "Microsoft Internet Explorer" && (browser_version < 4)) {
document.write("<link REL=\"stylesheet\" HREF=\"http://www.arts-in-company.com/paper/styles/ie3.css\" TYPE=\"text/css\">");
// window.alert("You are using the Poetic Style Sheet!");
}

else if (browser_type == "Microsoft Internet Explorer" && (browser_version >= 4)) {
document.write("<link REL=\"stylesheet\" HREF=\"http://www.arts-in-company.com/paper/styles/paper.css\" TYPE=\"text/css\">");
// window.alert("You are using the Normal Style Sheet!");
}


// this must be the last statement in the script. it handles all other browsers not covered above.

else {
document.write("<link REL=\"stylesheet\" HREF=\"http://www.arts-in-company.com/paper/styles/paper.css\" TYPE=\"text/css\">");
// window.alert("(else) You are using the Normal Style Sheet!");
} 
// window.alert("Browser Agent : " + browser_agent + "\nPlatform : " + platform + "\nBrowser Type : " + browser_type + "\nBrowser Version : " + browser_version); 

// the next few lines are for the print style sheet and the handheld style sheet. 

document.write("<link REL=\"stylesheet\" HREF=\"http://www.arts-in-company.com/paper/styles/webdevprint.css\" TYPE=\"text/css\">");
document.write("<link REL=\"stylesheet\" HREF=\"http://www.arts-in-company.com/paper/webdevhand.css\" TYPE=\"text/css\">");
// -->