// JavaScript Document
function GetObj(strkj)
{
	try
	{
		if (GetObj)
		{
			return eval('document.getElementById("'+strkj+'")');
		}
		else
		{
			return eval('document.all.'+strkj);
		}
	}
	catch(e)
	{}
}
var isShow = true;
function showAd(obj){
	var adObj = GetObj("hiddenAd"); 
	if(isShow){
		adObj.style.display = "none";
		obj.title = "Õ¹¿ª";
		obj.style.background = "url(images/flag/hidden.gif)";
	}else{
		adObj.style.display = "block";
		obj.title = "Òþ²Ø";
		obj.style.background = "url(images/flag/open.gif)";
	}
	isShow = !isShow;
}
	
