//check which browser and use appropriate style sheet
if (document.all) {
   document.write('<link rel="stylesheet" href="/css/ie.css" type="text/css">');
 } else {
   document.write('<link rel="stylesheet" href="/css/netscape.css" type="text/css">');
 }

