/* Function to write out document keywords */
function getmeta()
{
	var themeta = "";
	if (document.all.keywords && document.all.keywords != null)
	{
		themeta = "Document Keywords: " + document.all.keywords.content;
	}
	/*
	if (document.all.description && document.all.description != null)
	{
		themeta = themeta + "<br />Document Description: " + document.all.description.content;
	}
	*/
	return themeta;
}