function getCopyright()
{
	//set date variable
	currentDate = new Date();
	//Y2K fix for some browsers - using getFullYear instead of getYear
	theYear = currentDate.getFullYear();

	var theText = new String("");
	
	theText = theText + '<table width="95%" align="center">';
	theText = theText + '    <tr>';
	theText = theText + '	    <td align="center">';
	theText = theText + '          <font size="-1">';
	theText = theText + '               &copy; 1995 -&nbsp;' + theYear + '&nbsp;QVC, Inc. All rights reserved.';
	theText = theText + '               &nbsp;All trademarks, service marks and logos are owned by or registered to QVC, Inc., QDirect Ventures, Inc., ER Marks, Inc. or Diamonique Corporation.';
	theText = theText + '               &nbsp;All other product or brand names are trademarks of their respective owners.</font>';
	theText = theText + '       </td>';
	theText = theText + '	 </tr>';	
	theText = theText + '    <tr>';
	theText = theText + '	    <td width="100%" align="center">';
	theText = theText + '          <font size="-1"> URL: http://www.qvc.com</font>';
	theText = theText + '       </td>';
	theText = theText + '	 </tr>';
	theText = theText + '</table>';
	
	document.write(theText);

}
