<!-- Hide from JavaScript-Impaired Browsers
function makeit(form) {
var txt = '<!-- Add to the head of your html ' +
'document.--->\r\n';
if (document.taggr.title.value != "") {
txt = txt + '<meta name="title" content="' + document.taggr.title.value + '" />\n';
}
if (document.taggr.desc.value != "") {
txt = txt + '<meta name="description" content="' + document.taggr.desc.value + '" />\n';
}
if (document.taggr.keyw.value != "") {
txt = txt + '<meta name="keywords" content="' + document.taggr.keyw.value + '" />\n';
}
if (document.taggr.own.value != "") {
txt = txt + '<meta name="owner" content="' + document.taggr.own.value + '" />\n';
}
if (document.taggr.auth.value != "") {
txt = txt + '<meta name="author" content="' + document.taggr.auth.value + '" />\n';
}
if (document.taggr.gen.value != "") {
txt = txt + '<meta name="generator" content="' + document.taggr.gen.value + '" />\n';
}
if (document.taggr.lang.value != "") {
txt = txt + '<meta name="language" content="' + document.taggr.lang.value + '" />\n';
}
if (document.taggr.rate.value != "") {
txt = txt + '<meta name="rating" content="' + document.taggr.rate.value + '" />\n';
}
if (document.taggr.robo.value != "") {
txt = txt + '<meta name="robots" content="' + document.taggr.robo.value + '" />\n';
}
if (document.taggr.rvisit.value != "") {
txt = txt + '<meta name="revisit-after" content="' + document.taggr.rvisit.value + '" />\n';
}
if (document.taggr.copyr.value != "") {
txt = txt + '<meta name="copyright" content="' + document.taggr.copyr.value + '" />\n';
}
if (document.taggr.rlink.value != "") {
txt = txt + '<link rel="next" href="' + document.taggr.rlink.value + '" />\n';
}
document.taggr.getem.value=txt;
}
function copy()  {
document.taggr.getem.focus();
document.taggr.getem.select();
} 
// End Hiding -->

