// JavaScript Document
function selectlist(){
	
		
		document.mainform.action="/KnowledgeCenter/knowledgecenter.asp";
		document.mainform.target="_self";
		document.mainform.method="post";
		document.mainform.submit();
		
}
function showHideDetail(strShowDiv,strViewinfo,strCloseinfo)
{
	
	if(document.getElementById(strShowDiv).style.display=="none")
	{
		document.getElementById(strShowDiv).style.display="";
		document.getElementById(strViewinfo).style.display="none"
		document.getElementById(strCloseinfo).style.display="";
	
	}
	else
	{
		document.getElementById(strViewinfo).style.display="";
		document.getElementById(strShowDiv).style.display="none";
		document.getElementById(strCloseinfo).style.display="none"

	}

}