function currentcontent(urlString) {
newWin = window.open(urlString,"currentcontent","scrollbars=yes,width=450,height=370,left=50,top=10,resizable=yes,location=yes,toolbar=yes,status=yes")
newWin.focus()
}

function toggle(vDivId){
  var divElement=document.getElementById(vDivId);
        if (divElement.style.display == 'none') {
                divElement.style.display = 'block'
        } else {
                divElement.style.display = 'none'
        }
}
