function chrome() {
var is_chrome = navigator.userAgent.toLowerCase().indexOf('chrome') > -1;
if(is_chrome) {
document.getElementById('estilo').href="css/principalChrome.css";
}
var is_IE7 = navigator.userAgent.toLowerCase().indexOf('msie 7.0') > -1;
if(is_IE7) {
document.getElementById('estilo').href="css/principalIE7.css";
document.getElementById('IE').href="css/principalIE7.css";
}
}