function confirmation(whichMessage)
{
    if (whichMessage == 1)
    {
	    return confirm('Are you sure you want to delete this testimonial?');
	}
	else
	{
	    return confirm('Are you sure you want to delete this item?');
	}
	
}

function submitForm(whichForm)
{
	document.getElementById(whichForm).submit();
}

function navContentHeight()
{
	lhnHeight = document.getElementById('lhn').offsetHeight;
	contentContainerHeight = document.getElementById('contentContainer').offsetHeight;
	
	if (lhnHeight < contentContainerHeight)
	    {
    	    document.getElementById('lhn').style.height = contentContainerHeight + 'px';
	    }
}

function navContentPromoHeight()
{
	lhnHeight = document.getElementById('lhn').offsetHeight;
	contentContainerHeight = document.getElementById('contentContainer').offsetHeight;
	
	if (lhnHeight < contentContainerHeight)
	    {
    	    document.getElementById('lhn').style.height = contentContainerHeight + 'px';
	    }

	contentHeight = document.getElementById('contentPromo').offsetHeight;
	promoHeight = document.getElementById('promoTestimonialContainer').offsetHeight;
	
	if (contentHeight < promoHeight)
	    {
    	    document.getElementById('contentPromo').style.height = promoHeight + 'px';
	    }
}