function popUp(URL)
{
day = new Date();
id = day.getTime();
var pageNew = window.open(URL, id, 'toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=0,width=800,height=540,left=6,top=6');
}
function hideAndPrint()
{
var btn=window.document.getElementById('button1');
btn.style.visibility="hidden";
window.print();
}
function printIt(id)
{
var win;
var str='';
str = document.getElementById(id).innerHTML;
win=window.open('print.htm','PrintVersion','height=700,width=640,status=yes,scrollbars=yes');
win.document.write('<html>\n<head>\n<title>Print Version<\/title>\n');
win.document.write('<link href="stylesPrint.css" rel="stylesheet" type="text/css">\n');
win.document.write('<\/head><body>');
win.document.write('<input id="button1" type="button" onclick="this.style.display=\'none\';window.print();" value="Click to Print" NAME="button1"><BR>');
win.document.write(str);
win.document.write('<\/body>\n<\/html>');
win.document.close();
}

/*
win.document.write('<script type="text');
win.document.write('/javascript" src="script.js"><\/script>');
*/