var browserWidth = screen.width;
var browserHeight = screen.height;

if (browserWidth >= 1071) {
	document.write('<link href="../stylesheets/home_stylesheet_1280.css" rel="stylesheet" type="text/css">');

  var anyArray = new Array('../images/home_pic_1_1280.jpg','../images/home_pic_2_1280.jpg','../images/home_pic_3_1280.jpg');
  anyArray.sort(function() {return 0.5 - Math.random()})

}else{
  document.write('<link href="../stylesheets/home_stylesheet_1024.css" rel="stylesheet" type="text/css">');

  var anyArray = new Array('../images/home_pic_1_1024.jpg','../images/home_pic_2_1024.jpg','../images/home_pic_3_1024.jpg');
  anyArray.sort(function() {return 0.5 - Math.random()})

}

function changeBG(){
  var thisBG = anyArray[0];
  return document.getElementById("mainBody").style.backgroundImage = "url("+thisBG+")";
}

function showClock(){
  var Digital=new Date()
  var hours=Digital.getHours()
  var minutes=Digital.getMinutes()
  var seconds=Digital.getSeconds()
  var dn="AM"
  if (hours>12){
    dn="PM"
    //hours=hours-12
  }
  if (hours==12 && dn=="PM")
    hours="0"
  if (hours<=9)
    hours="0"+hours
  if (minutes<=9)
    minutes="0"+minutes
  if (seconds<=9)
    seconds="0"+seconds
    document.getElementById("Clock").innerHTML = hours+":"+minutes+"."+seconds
    setTimeout("showClock()",1000)
}

function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}
