
function CreateMenuItemTag(strItemText,strItemLink)
{
	tag= "<A href=\"" + strItemLink + "\" target=\"_top\" class=\"" + ((strItemText!=g_PageMenuItemText) ? "menu" : "menu_sel") + "\">" + strItemText + "</A>";

	document.write(tag);
}

function CreateImageTag()
{
	urlQuery= location.href.split("?");
	tag= "<p align=\"center\"><a href=\"\" onclick=\"history.go(-1); return false;\"><img src=\"" + urlQuery[1] + "\" align=\"center\" class=\"ImageShow\"></a></p>";

	document.write(tag);
}

