function footer(obj,mode){
	var iconobj=document.getElementById(obj);

	if(mode==1){
		iconobj.style.display='block';
	}else{
		iconobj.style.display='none';
	}
}

//embed È°¼ºÈ­ ¹Ú½º ¾ø¾Ö±â
function embedWriteNoLoop(strUrl,intWidth,intHeight){
	var strHTML = "";
	strHTML = "<embed src='" + strUrl + "' menu='false' quality='high' scale='noscale' width='" + intWidth + "' height='" + intHeight + "' allowScriptAccess='sameDomain' type='application/x-shockwave-flash' pluginspage='http://www.macromedia.com/go/getflashplayer' wmode='transparent'></embed>";
	document.write(strHTML);
}

//embed È°¼ºÈ­ ¹Ú½º ¾ø¾Ö±â
function embedWrite(strUrl,intWidth,intHeight){
	var strHTML = "";
	strHTML = "<embed src='" + strUrl + "' menu='true' quality='high' scale='noscale' width='" + intWidth + "' height='" + intHeight + "' allowScriptAccess='sameDomain' type='application/x-shockwave-flash' pluginspage='http://www.macromedia.com/go/getflashplayer' wmode='transparent'></embed>";
	document.write(strHTML);
}

function mainpop(){
	window.open('/pop.html','ppop','width=300,height=420,status=no');
}