function set_title_tag(str_title)
{
	word = document.title;
	word = str_title;
	document.write(word);
}

