var gAutoPrint = true; // Tells whether to automatically call the print function
function rotate(){
var cur=Math.round(20*Math.random())
var now =new Date();
var hour = now.getHours();
if (hour >=5 && hour <=19) {
document.write('<!--DAYTIME--><a href="http://www.thepilot.com"><img src="/banners/day/'+cur+'.jpg" WIDTH="685" HEIGHT="80" BORDER="0"></A>')
}else{
document.write('<!--NIGHTTIME--><a href="http://www.thepilot.com"><img src="/banners/night/'+cur+'.jpg" WIDTH="685" HEIGHT="80" BORDER="0"</A>')

}
}
function poptastic(url) 
{
        var newwindow;  
        newwindow=window.open(url,'name','height=125,width=500');
        if (window.focus) {newwindow.focus()}
}
function popspecific(url,width,height)
{
        var newwindow;
        newwindow=window.open(url,'name','height='+height+',width='+width);
        if (window.focus) {newwindow.focus()}
} 
function entsub(event,ourform) {
  if (event && event.which == 13)
    ourform.submit();
  else
    return true;
}



function printSpecial()
{
if (document.getElementById != null)
{
var html = '<HTML>\n<HEAD>\n';

if (document.getElementsByTagName != null)
{
var headTags = document.getElementsByTagName("head");
if (headTags.length > 0)
html += headTags[0].innerHTML;
}

html += '\n</HE>\n<BODY>\n';

var printReadyElem = document.getElementById("printReady");

if (printReadyElem != null)
{
html += "<IMG SRC=\"/banners/day/9.jpg\" WIDTH=685 HEIGHT=80><BR>";;
html += printReadyElem.innerHTML;
}
else
{
alert("Could not find the printReady function");
return;
}

html += '\n</BO>\n</HT>';

var printWin = window.open("","printSpecial");
printWin.document.open();
printWin.document.write(html);
printWin.document.close();
if (gAutoPrint)
printWin.print();
}
else
{
alert("The print ready feature is only available if you are using an browser. Please update your browswer.");
}
}

