// JavaScript Document


function openPrintWindow(fileName)
{
	window.open(fileName,'enlargeprint','resizable=yes,width=720,height=500');
}

function openPrintWindowTall(fileName)
{
	window.open(fileName,'enlargeprinttall;','resizable=yes,width=500,height=720');
}
