
  // spacer.js
  // -------------
  // choose the appropriate stylesheet according to
  // the user's screen resolution
  

if (screen.width == 640) {
document.write('<img src="images/dot-clear.gif" width="500" height="98" alt="" align="center">');
}
if (screen.width == 800) {
document.write('<img src="images/dot-clear.gif" width="500" height="98" alt="" align="center">');
}
if (screen.width == 1024) {
document.write('<img src="images/dot-clear.gif" width="700" height="198" alt="" align="center">');
}
if (screen.width == 1152) {
document.write('<img src="images/dot-clear.gif" width="700" height="198" alt="" align="center">');
}
if (screen.width == 1280) {
document.write('<img src="images/dot-clear.gif" width="700" height="198" alt="" align="center">');
}
if (screen.width == 1600) {
document.write('<img src="images/dot-clear.gif" width="700" height="198" alt="" align="center">');
}
