﻿function printit(){
setTimeout('winPrint()',400000);
}

function winPrint(){
if (window.print)
{
window.print();
}
else
{
alert("Your Web Browser DOES NOT support this print method. Close this window and select File>Print from your Menus.");
}
}