function popupPrint(URL) {
 day = new Date();
id = day.getTime();
eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=1,location=0,statusbar=0,menubar=0,resizable=1,width=550,height=450,left = 326,top = 232');");

}

function popupEmail(URL) {
 day = new Date();
id = day.getTime();
eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=1,location=0,statusbar=0,menubar=0,resizable=1,width=300,height=430,left = 326,top = 232');");

}


function toggleDiv(divid){
    if(document.getElementById(divid).style.display == 'block'){
      document.getElementById(divid).style.display = 'none';
    }else{
      document.getElementById(divid).style.display = 'block';
    }
}