var xmlhttp=false;
function TagGen() {
	var Title = document.tag.Title.value;
	var Description = document.tag.Description.value;
	var Keywords = document.tag.Keywords.value;
	var Index = document.tag.Index.value;
	var Follow = document.tag.Follow.value;
	var Author = document.tag.Author.value;
	var Language = document.tag.Language.value;
	var url = "gen.php?Title="+Title+"&Description="+Description+"&Keywords="+Keywords+"&Index="+Index+"&Follow="+Follow+"&Author="+Author+"&Language="+Language
if (window.ActiveXObject)
{
xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
}
else if(window.XMLHttpRequest)
{
xmlhttp=new XMLHttpRequest();
}
xmlhttp.open("GET", url, true);
xmlhttp.onreadystatechange=function() {
do
{
document.getElementById("showtag").innerHTML = '<CENTER><img src="../pic/load.gif" alt="Loading..."></CENTER>';
}
while(xmlhttp.readyState==200)
if (xmlhttp.readyState==4) {
document.getElementById("showtag").innerHTML = xmlhttp.responseText;
}
}
xmlhttp.send(null)
}
