function showAbout(file_name)
	{
	objNewWindow6=window.open(file_name,"about", "top=100,left=100,width=600,height=400,toolbar=no,menubar=0,location=0,directories=no,channelmode=no,scrollbars=yes,resizable=1");
	objNewWindow6.focus();
	};

function closeAbout()
	{
if (objNewWindow6) if (!objNewWindow6.closed) objNewWindow6.close();
	};
