function confirmation(whichMessage)
{
	return confirm('Are you sure you want to delete this page/s');
}

function navContentHeight(isImageOrFlash)
{
	lhnHeight = document.getElementById('lhn').offsetHeight;
	contentContainerHeight = document.getElementById('contentContainer').offsetHeight;
	
	if (lhnHeight < contentContainerHeight)
	    {
    	    document.getElementById('lhn').style.height = contentContainerHeight + 'px';
	    }    

	pageContentHeight = document.getElementById('pageContent').offsetHeight;
	
	if (isImageOrFlash == 0)
	{
	    if (pageContentHeight > 400)
	    {
	        newFlashTop = pageContentHeight - 323;
            document.getElementById('imageFlashContent').style.marginTop = newFlashTop + 'px';
	    }
    }
}