function importflash(f, w, h) {
   document.write('<object type="application/x-shockwave-flash" data="' + f + '.swf" width="' + w + '" height="' + h + '">\n');
   document.write('<param name="allowScriptAccess" value="sameDomain" />\n');
   document.write('<param name="movie" value="' + f + '.swf" />\n');
   document.write('<param name="quality" value="high" />\n');
   document.write('<param name="menu" value="false" />\n');
   document.write('<param name="wmode" value="transparent" />\n');
   document.write('</object>\n');
}

function getHeader() {
var theImages = new Array()
theImages[0] = '/_img/header1.jpg'
theImages[1] = '/_img/header2.jpg'
theImages[2] = '/_img/header3.jpg'
theImages[3] = '/_img/header4.jpg'
theImages[4] = '/_img/header5.jpg'


var j = 0
var p = theImages.length;
var preBuffer = new Array()
for (i = 0; i < p; i++){
   preBuffer[i] = new Image()
   preBuffer[i].src = theImages[i]
}
var whichNumber = Math.round(Math.random()*(p-1));
document.write('<a href="/contact-us.aspx"><img src="'+theImages[whichNumber]+'" alt="" border="0" /></a>');
//document.getElementById("header").style.backgroundImage = "url("+theImages[whichNumber]+")";
}