function showReport(file_name)
	{
<!--show download window for selected verion //-->
	objNewWindow7=window.open(file_name,"report", "top=100,left=100,width=550,height=400,toolbar=no,menubar=0,location=0,directories=no,channelmode=no,scrollbars=yes");
	objNewWindow7.focus();
	};


function closeReport()
	{
if (objNewWindow7) if (!objNewWindow7.closed) objNewWindow7.close();
	};