function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}

function show_hide_text(divObj) {
var div = jQuery(divObj).nextAll('div').get(0);
//console.log(div);
    if (div.style.display == 'none') {
        div.style.display = 'block';
    } else {
        div.style.display = 'none';
    }
}
