var rightsWin = null;
function showRights()	{
	if(!rightsWin || rightsWin.closed)
		rightsWin = window.open ("", "Rights", 'dependent=yes,toolbar=no,directories=no,location=no,status=no,menubar=no,scrollbars=no,resizable=yes,width=205,height=140');
	rightsWin.location = "rights.html";
	rightsWin.focus();
}