function $(id){
    return document.getElementById(id);
}
function ShowOrHideAd(type){
	var display;
	if(type==0)
		display="block";
	else
		display="none";
	
    if($("top_ad1")!=null)
        $("top_ad1").style.display=display;
    if($("top_ad2")!=null)
        $("top_ad2").style.display=display;
    if($("top_ad3")!=null)
        $("top_ad3").style.display=display;
    if($("top_rad")!=null)
        $("top_rad").style.display=display;
    if($("right_ad")!=null)
        $("right_ad").style.display=display;
	
    if($("textad1")!=null)
        $("textad1").style.display=display;
    if($("textad2")!=null)
        $("textad2").style.display=display;
    if($("textad3")!=null)
        $("textad3").style.display=display;
    if($("textad4")!=null)
        $("textad4").style.display=display;
    if($("textad5")!=null)
        $("textad5").style.display=display;
    if($("textad6")!=null)
        $("textad6").style.display=display;
    if($("textad7")!=null)
        $("textad7").style.display=display;
    if($("textad8")!=null)
        $("textad8").style.display=display;
    if($("textad9")!=null)
        $("textad9").style.display=display;
    if($("textad10")!=null)
        $("textad10").style.display=display;
}
setTimeout("ShowOrHideAd(0)",1000*20);

//¹Ø±Õ¸¡¶¯¹ã¸æ
function closeLRAd(id,id2){
	document.getElementById(id).style.display="none";
	document.getElementById(id2).style.display="none";
}

function changeAText(id){
	if(id==0){
		document.getElementById("aclosead").style.display="none";
		document.getElementById("aopenad").style.display="inline";
	}else{
		document.getElementById("aclosead").style.display="inline";
		document.getElementById("aopenad").style.display="none";
	}
}
