function newWindow(print){
printWindow=window.open(print,'printWin', 'WIDTH=540,HEIGHT=500,SCROLLBARS=yes')

printWindow.focus()
}

function newWindow2(print2){
print2Window=window.open(print2,'print2Win', 'WIDTH=600,HEIGHT=500,SCROLLBARS=yes')

print2Window.focus()
}

function closeWindow() {
if(window && !window.closed) {
window.close()
}
}

function PrintPage() {
if (window.print){
window.print();
}else{
alert("Your browser does not support printing a page using this button (requires Internet Explorer 5 or Netscape Navigator 4).\n" +
"However, you can print in several other ways (after clicking OK below):\n" +
"* Press Ctrl-P\n" +
"* Right Click, then select Print\n" +
"* Select File > Print from the menu bar at the top of the screen");
	}			
}