function mouseOnTD(seq){
	var oTD = eval("document.all.ic");
	oTD[(seq*2)-2].style.backgroundColor = "ACC8E3";
	oTD[(seq*2)-2].style.cursor = "hand";
	oTD[(seq*2)-1].style.cursor = "hand";
}

function mouseOutTD(seq){
	var oTD = eval("document.all.ic");
	oTD[(seq*2)-2].style.backgroundColor = "";
	oTD[(seq*2)-2].style.cursor = "";
	oTD[(seq*2)-1].style.cursor = "";
}

function ClickOnTD(obj, page){
	obj.style.backgroundColor = "ACC8E3";
	obj.style.cursor = "hand";
	parent.contents.location.href= page;
}

function changeListImg(cid, num, imgname){
	document.all[imgname].src="images/ci/"+cid.toString()+"_"+num.toString()+".gif";
}

function playerWin(url){
	window.open(url, "_blank","width=553,height=720,resizable=1,scrollbars=NO,top=0,left=0")
}

function playerWin_audio(url){
	window.open(url, "_blank","width=350 ,height=330 ,resizable=0, scrollbars=NO, top=100, left=100") 	
}

function checkComment(form){
	if(form.names.value == ""){
		alert("ÀÌ¸§À» ÀÔ·ÂÇØ ÁÖ½Ê½Ã¿À");
	}else if(form.pass.value == ""){
		alert("¾ÏÈ£¸¦ ÀÔ·ÂÇØ ÁÖ½Ê½Ã¿À");
	}else if(form.commnt.value == ""){
		alert("³»¿ëÀ» ÀÔ·ÂÇØ ÁÖ½Ê½Ã¿À");
	}else{
		form.submit();
	}
}