function OpenPDFWindow(theURL,winName,features)
{
	window.open(theURL,winName,"menubar=0,toolbar=1,location=0,status=0,scrollbars=1,resizable=1,width=500,height=400,left=" + (screen.width - 500)/2 + ",top="+ (screen.height - 500)/2);
}


function showDiv(activeDiv, totalDivs, divBaseName)
{
	var lCount;
	//1. set display='none' for all divs
	for (lCount=1; lCount<totalDivs+1; lCount++){document.getElementById(divBaseName + lCount).style.display='none';}
	//2. set display='' for the activeDiv
	document.getElementById(activeDiv).style.display='';
}


function MM_openBrWindow(theURL,winName,features)
{
	window.open(theURL,winName,"menubar=0,toolbar=1,location=0,status=0,scrollbars=1,resizable=1,width=500,height=400,left=" + (screen.width - 500)/2 + ",top="+ (screen.height - 500)/2);
}
