

var rel = "stylesheet";

//if you are going to create tags that are specific

//to netscape, make sure to use a separate stylesheet

//that addresses those.  Otherwise, just use the same

//filename for both.

var navigatorFile = "style.css";

var normalFile = "style.css";

if (document.layers) document.write('<link rel='+ rel + ' href="' + navigatorFile + '">') 

else document.write('<link rel=' + rel + ' href="' + normalFile + '">') 
