// JavaScript Document

function PopWin(Url,WinName,W,H) {
	  para = 'toolbar=no,location=no,status=no,menubar=no,scrollbars=yes,resizable=yes,';
	  para += 'width=' + W + ',height=' + H;
	  window.open(Url,WinName,para);
}

function colorChenge(itemNum,aNum){

	if(aNum == 'over'){
		document.getElementById("btc"+itemNum).style.backgroundImage = "url(/IMAGES/contentsbg01_on.gif)";
		document.getElementById("cap"+itemNum).style.color = "#C71444";
	}else{
		document.getElementById("btc"+itemNum).style.backgroundImage = "url(/IMAGES/contentsbg01_off.gif)";
		document.getElementById("cap"+itemNum).style.color = "#666666";
	}
}

function colorChenge02(itemNum,aNum){
	if(aNum == 'over'){
		document.getElementById(itemNum).style.color = "#C71444";
	}else{
		document.getElementById(itemNum).style.color = "#666666";
	}
}

