function CartUpdateHeaderNav(){$.ajax({type: 'POST', cache: false, dataType: 'html', url: '/simple/ajax/cart-updates.asp?task=cartHeaderTotal', success: function(data){dataLoadFadeIn('cartNavCount',data,200);} }); }
function smoothShow(strDirection,strID,strSpeed,strFunctionComplete)
{
	if (strDirection=='down'){
		$("#"+strID).slideDown();
	}
}
function smoothHide(strDirection,strID,strSpeed,strFunctionComplete)
{
	if (strDirection=='down'){
		$("#"+strID).slideUp();
	}
}
function smoothToggle(strDirection,strID,strSpeed,strFunctionComplete)
{
	if (document.getElementById(strID).style.display == 'none'){
		smoothShow(strDirection,strID,strSpeed,strFunctionComplete);	
	}
	else{
		smoothHide(strDirection,strID,strSpeed,strFunctionComplete);
	}
}
function openPopUpFAQ(strFile,strName) {
  newWindow = window.open (strFile,strName,'width=300,height=600,toolbar=0,scrollbars=1,menubar=0,status=0,resizable=yes');
  newWindow.focus();
}
