<!--

var small_externalcss='../../scripts/style.css' //for 800x600 screens
var big_externalcss='../../scripts/bstyle.css' // for bigger screens

if (screen.width==800||screen.height==600) //if 800x600
document.write('<link rel="stylesheet" type="text/css" href="'+ small_externalcss +'">')

else if (screen.width==640||screen.height==480) //if 640x480
document.write('<link rel="stylesheet" type="text/css" href="'+ small_externalcss +'">')

else if (screen.width==1024||screen.height==768) //if 1024x768
document.write('<link rel="stylesheet" type="text/css" href="'+ big_externalcss +'">')

else //if all else
document.write('<link rel="stylesheet" type="text/css" href="'+ big_externalcss +'">')

//-->

