function openPopUp(url, title, image)
{

	//Create the string required to navigate to the ExitPopup.aspx page 
	var popupPage = 'PopUp.aspx?image=' + image + '&title=' + title
		
	nwin=window.open(popupPage,'','width=720,height=520,location=center,menubar=no,resizable=yes,scrollbars=yes,status=no,titlebar=no,toolbar=no,top=20,screenX=0,screenY=0');
	nwin.focus()  
}

function openFIEPopUp(url, image)
{

	//Create the string required to navigate to the ExitPopup.aspx page 
	var popupPage = 'PopUp.aspx?image=' + image 
		
	nwin=window.open(popupPage,'','width=750,height=550,location=center,menubar=no,resizable=yes,scrollbars=yes,status=no,titlebar=no,toolbar=no,top=20,screenX=0,screenY=0');
	nwin.focus()  
}
