// srcHeader.js V1.1 10/27/2011 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.5 8/5/2011
// Rev 1 1/11/2012

var spon_imgs = new Array("Crown_Logo.jpg","KMK.jpg","CW+CCR_stacked_blue-red.jpg", "CityBeat.jpg");
var spon_Tags = new Array("Crown Plastics","Keating Muething & Klekamp","Cushman & Wakefield","City Beat");

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

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

