//v1.0
//Copyright 2006 Adobe Systems, Inc. All rights reserved.

window.onload = function() {
var elmLINK = document.getElementsByTagName('LINK')[0];
var UA = navigator.userAgent;
if (UA.indexOf("Opera") != -1) { sHREF = './style.css'; }
else if (UA.indexOf("MSIE") != -1) { sHREF = './style.css'; }
else if (UA.indexOf("Firefox") != -1) { sHREF = './style.css'; }
else if (UA.indexOf("Safari") != -1) { sHREF = './style2.css'; }
else { sHREF = './unknown.css'; }
elmLINK.setAttribute('href', sHREF);
}

