// Common Functions

/***********************************************
* Pop-up 
***********************************************/
function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}

/*fix for manipulating Page DropDown list over Adv. Serach Tab in IE6 */
function hide_drpDwn() {
	//document.getElementById ("sel_page").style.display = "none"
	var div = document.getElementById ("sel_page");
	if (div != null)
	{
	    div.style.display = "none";
	}
}

function show_drpDwn() 
{
	//document.getElementById ("sel_page").style.display = "inline"
	var div = document.getElementById ("sel_page");
	if (div != null)
	{
	    div.style.display = "inline";
	}
}
