// JavaScript Document
function setActive() {
  aObj = document.getElementById('ctl00_topmenu').getElementsByTagName('a');
  
  for(i=0;i<aObj.length;i++) {
    if(document.location.href.indexOf(aObj[i].href)>=0) {
      aObj[i].className='current';
    }
  }
}
function openwindow(url)
{
	winpops=window.open(url,"","")
}
function openpopup(img)
{
	placeheight=screen.availheight / 2 - 225;
	placewidth=screen.availwidth / 2 - 230;
	var popurl=img;
	winpops=window.open(popurl,"","scrollbars=1,width=450,left=" + placewidth + ",top=" + placeheight + ",height=460")
}
