<!--
function showdiv(obj){
a=document.getElementById(obj);
if (a.style.display=='none')
{
	a.style.display='block';
	document.cookie = ""+obj+"=Y; expires=Thu, 31 Dec 2020 23:59:59 GMT; path=/;";
}else{
	a.style.display='none';
	document.cookie = ""+obj+"=N; expires=Thu, 31 Dec 2020 23:59:59 GMT; path=/;";
}
}
function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}
//-->