<!--//
//¸Þ´º·Ñ¿À¹ö<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
function menuClick(value){
	menu=eval("document.all."+value+".style");
	if (menu.display=="block")  {
		menu.display="none";
	}else {
		menu.display="block";
	}
}
function menuOver(strName,strImgName){
	imgSrc = eval("document.all."+strName);
	imgSrc.src = strImgName;	
}
function menuOut(strName,strImgName){
	imgSrc = eval("document.all."+strName);
	imgSrc.src = strImgName;
}
//>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>

function openWin(strUrl,strName,strW,strH,chScr,chRes)
{
	if (chScr=="") chScr="0";
	if (document.all || chRes=="") chRes="0";
	w = window.open(strUrl,strName,"width="+strW+",height="+strH+",scrollbars="+chScr+",resizable="+chRes);
	
}


// iframe resize Function<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
function reSize()
{
	    var objBody	    =	ifrm_body.document.body;
	    var objFrame	=	document.all["ifrm_body"];


	    objFrame.style.height = objBody.scrollHeight + (objBody.offsetHeight - objBody.clientHeight)
	    objFrame.style.width = '100%'

}
function frame_init()
{
	    window.parent.reSize();
}

window.onload = frame_init;
//>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
//-->
