<!-- Begin

function alertSize() {
  var myWidth = 0;
  if( typeof( window.innerWidth ) == 'number' ) {
    //Non-IE
    myWidth = window.innerWidth;
  } else if( document.documentElement &&
      ( document.documentElement.clientWidth || document.documentElement.clientHeight ) ) {
    //IE 6+ in 'standards compliant mode'
    myWidth = document.documentElement.clientWidth;
  } else if( document.body && ( document.body.clientWidth || document.body.clientHeight ) ) {
    //IE 4 compatible
    myWidth = document.body.clientWidth;
  }
  return myWidth;
}
function showImage() {
if(alertSize()>=1000){
        if (document.layers && document.BGLayer && screen.width==1024 && screen.height==768) {
        document.BGLayer.background.src = "../images/background.gif";}
        if (document.body && screen.width==1024 && screen.height==768) {
        document.body.background = "../images/background.gif";}
        }
}



var mydate=new Date();
var year=mydate.getYear();
if (year < 1000)
year+=1900
var day=mydate.getDay();
var month=mydate.getMonth();
var daym=mydate.getDate();
if (daym<10)
daym="0"+daym
var dayarray=new Array("Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday");
var montharray=new Array("January","February","March","April","May","June","July","August","September","October","November","December");
//  End -->
