
/**********************************************
//フレームに指定されたページに設定する
//また、フレームのheight属性値の設定もおこなう
**********************************************/
function FrameSet(name,count,no){
	AllBackColor("#e5fff4");
	fm = document.getElementById("target");
	fm.src="http://www.sai-dental.com/case/contens/"+name+".html";
	len = count*235;
	fm.height=len;
	SetBackColor(no);
}

function AllBackColor(color){
	for(i=1;i<=8;i++){
		listcolor=document.getElementById("list"+i);
		bgcolorAttr = document.createAttribute("bgcolor");
		bgcolorAttr.nodeValue = "#e5fff4";
		listcolor.setAttributeNode(bgcolorAttr);
	}

}

function SetBackColor(no){
	
	colorno=document.getElementById("list"+no);
	bgcolorAttr = document.createAttribute("bgcolor");
	bgcolorAttr.nodeValue = "#ffbccc";
	colorno.setAttributeNode(bgcolorAttr);

}

