function MM_openBrWindow(theURL,winName,features) { //v2.0
	  window.open(theURL,winName,features);
}
/*
 * display the full list of dates for a given publisher
 */
function showDiv(obj)
{
	var divElem = document.getElementById(obj);
	divElem.style.display = 'block';
}
function hideDiv(obj)
{
	var divElem = document.getElementById(obj);
	divElem.style.display = 'none';
}

//window.onload=startList;
// alternative menu function
/*function fnSetHoverClass(parentID, tag,_ hoverClass) {
var el = document.getElementById(parentID);
if (el) {
el = el.getElementsByTagName(tag);
for (var i=0; i < el.length; i++) {
el[i].onmouseover = function()_ {this.className += " "+ hoverClass;}
el[i].onmouseout = function()_ {this.className = this.className.replace_(new RegExp(" "+ hoverClass +"\\b"), "");}
}
}
}*/

