// srcHeader.js V1.0 10/3/2007 by J. Bradley Reck.
// Items at the top of the page

// if the browser is ie use ieaddrph
  if(document.all) {
    document.write('<div class="ieaddrph">');
  } else {
    document.write('<div class="addrph">');
  }    document.write('<p style="text-align: center;">PO. Box 11011 Cincinnati, Ohio 45211-1011<br>Phone: 513-484-0157</p>');
    document.write('</div>');

 // stuff for the sponsor image
windowX = getWindowX();sponsposit = windowX - 480;
swidth = 190;
// width:'+swidth+';">');

// if the browser is ie use iespons
  if(document.all) {
    document.write('<div class="iespons" style="left: '+sponsposit+';">');
  } else {
    document.write('<div class="spons" style="left: '+sponsposit+';">');
  }
    document.write('<table width="100%" border="0"><tr><td style=" color: #FFFFFF; width: 30%;">GCPAS is Proudly<br>Sponsored by:</td><td style=" width: 70%;">');

// Show a randomly selected sponsor image.
// J. Bradley Reck
// V 0.4 10/5/2010 

var spon_imgs = new Array("Crown_Logo.jpg","logo_rpi2.gif","Colliers.jpg","JDK-Software.jpg");

imgs = spon_imgs.length;
rand_img = Math.round((imgs -1) * Math.random());
document.write('<img src="/Graphics/Sponsor/Crown_Logo.jpg" name="spons_img">');
 the_img =  "/Graphics/Sponsor/" + spon_imgs[rand_img];
document.spons_img.src = the_img;

document.write('</td></tr></table></div>');
