
function Clickheretoprint()
{ 
  var disp_setting="toolbar=no,location=no,directories=no,menubar=yes,resizable=yes,"; 
      disp_setting+="scrollbars=yes,width=800, height=700, left=100, top=25"; 

  var content_vlue1 = document.getElementById("print1").innerHTML;
  var content_vlue2 = document.getElementById("print2").innerHTML;
  var content_vlue3 = document.getElementById("print3").innerHTML; 

  
  var docprint=window.open("","",disp_setting); 
   docprint.document.open(); 
   docprint.document.write('<html><head><title>Maryland Sports Printer Friendly</title>'); 
   docprint.document.write('</head><body onLoad="self.print()"><center><img src="http://marylandsports.us/PublishingImages/printableHeader.jpg"><BR><BR>');          
   docprint.document.write(content_vlue1);
   docprint.document.write('<BR><BR>');
   docprint.document.write(content_vlue2);
   docprint.document.write(content_vlue3);
             
   docprint.document.write('</center></body></html>'); 
   docprint.document.close(); 
   docprint.focus(); 

}
// this function is currently not in use, as the Sports people asked to change the background to be a watermark
// switch back if they want
function sportsetheight()
{
      d = document.getElementById('sportbody');
      d.style.backgroundImage = "url('/PublishingImages/SM_backgroundBottom.jpg')";
      d.style.backgroundRepeat = 'repeat-x';
      d.style.backgroundColor = '#384C29';
}
