function DisplayDrsPopup(isCenter)
{
	var theURL = '/common/popup_authenticity.asp';

	SearchPopUp(theURL, 'SearchHeader1', '','750','483','true');
}

function DisplayCEOComment(isCenter)
{
	var theURL = '/ceocomments.asp';
	
	SearchPopUp(theURL, 'SearchHeader2', '','750','483','true');
}

function SearchPopUp(theURL,winName,features, myWidth, myHeight, isCenter) 
{ 
	if(window.screen)
	{
		if(isCenter)
		{
			var myLeft = (screen.width-myWidth)/2;
			var myTop = (screen.height-myHeight)/2;
		}
	}

	window.open(theURL, winName, 'scrollbars=1,width=750,height=600,left=' + myLeft + ',top=' + myTop + ',screenX=50,screenY=50');
}