

if (window.navigator.userAgent.indexOf("MSIE")>=1) 
{  
var IE800="style4.css"; 
var IEother="style.css"; 
ScreenWidth(IE800,IEother) 
} 
else{ 
if (window.navigator.userAgent.indexOf("Firefox")>=1) 
{ 
var Firefox800="style4.css"; 
var Firefoxother="style.css"; 
ScreenWidth(Firefox800,Firefoxother) 
} 
else{ 
var Other800="style4.css"; 
var Otherother="style.css"; 
ScreenWidth(Other800,Otherother) 
} 
}

function ScreenWidth(style4,style){ 
if ((screen.width == 800) && (screen.height == 600)){ 
setActiveStyleSheet(style4); 
}else{ 
setActiveStyleSheet(style); 
}
} 

function setActiveStyleSheet(title){ 

document.getElementsByTagName("link")[0].href="../css/"+title; 
} 

