
function ShowNoResultsPopUp(windowTitle)
{
	if ( dhtmlmodal != null )
		noResultsWindow = dhtmlmodal.open("NoResults", "iframe", "/products/noProductsLayer.aspx", windowTitle, 'width=405px,height=130px,center=1,resize=0,scrolling=0')
}


/*Remove Comments to enable Sticky Button*/
$(document).ready(function () {
    $(window).scroll(function () {
	/* Sticky Btn appears on 10th row */
        if (($(window).scrollTop() + $(window).height()) > 3641) {
            if (jQuery.browser.msie) {
                $('.showProd-aStickyBtn').show();
            }
            else {
                $('.showProd-aStickyBtn').fadeIn();
            }
        }
        else {
            if (jQuery.browser.msie) {
                $('.showProd-aStickyBtn').hide();
            }
            else {
                $('.showProd-aStickyBtn').fadeOut();
            }
        }
    });
});
