var guaranteeAnimationTime = 0.4; // seconds
guaranteeAnimationTime = guaranteeAnimationTime*1000;

var kidsGuaranteePopupFrameWidth = 701;

function showKidsGuaranteePopup(kidsGuaranteePopupDivName, kidsGuaranteePopupFrameHeight)
{
	
	try { allModals.wipe(); } catch (err) {}
	
	var kidsGuaranteePopupBackground = kidsGuaranteePopupDivName;
	var kidsGuaranteePopupviewport = getViewportDimensions();
	var kidsGuaranteePopupFrameTop = (kidsGuaranteePopupviewport[1]/2-(kidsGuaranteePopupFrameHeight)/2)+$(window).scrollTop();
	var kidsGuaranteePopupFrameLeft = (kidsGuaranteePopupviewport[0]/2-(kidsGuaranteePopupFrameWidth)/2);
	$('#'+kidsGuaranteePopupBackground).css({top:(kidsGuaranteePopupFrameTop)+'px', left:(kidsGuaranteePopupFrameLeft)+'px'});
	$('#'+kidsGuaranteePopupBackground).show(guaranteeAnimationTime, function(){});
	
	if (jQuery.browser.msie && parseInt(jQuery.browser.version) == 6) $('select').hide();
}

function hideKidsGuaranteePopup()
{
	$('#kidsGuaranteeBackground').hide(guaranteeAnimationTime);
	if (jQuery.browser.msie && parseInt(jQuery.browser.version) == 6) $('select').show();
}
