﻿function rolloverover(control)
{
	control.style.background= "url(/images/"+control.id+"-over.jpg)";
}
function rolloverout(control)
{
    control.style.background= "url(/images/"+control.id+".jpg)";
}
function toggleDiv(divid){
    if(document.getElementById(divid).style.display == 'none'){
      document.getElementById(divid).style.display = 'block';
    }else{
      document.getElementById(divid).style.display = 'none';
    }
}
function toggleDivWithImage(divid, sender){
    if(document.getElementById(divid).style.display == 'none'){
      document.getElementById(divid).style.display = 'block';
      sender.className = 'slidedown';
    }else{
      document.getElementById(divid).style.display = 'none';
      sender.className = 'slideup';
    }
}
function popup(a,b,w,h){
w2=w+12;
h2=h+30;
win = window.open(a,b,"width="+w+",height="+h+",outerwidth="+w2+",outerheight="+h2+",top=50,left=50,scrollbars=1");
win.focus();
}
