

function openWin(URL,bwidth,bheight,name) 
{
	aWindow = window.open(URL,name,"menubar=yes,scrollbars=yes,resizable=1,width="+bwidth+",height="+bheight+",top=40,left=40");
}


function openWinScroll(URL,bwidth,bheight,name) 
{
	//window.name = name;
	aWindow = window.open(URL,name,"toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes,width="+bwidth+",height="+bheight+",top=40,left=40");
}	




    $(document).ready(function() {
        var promptText = 'Keyword, product code';

        $('#search-text').focus(function() {

            if ($(this).val() == promptText) {
                $(this).val('');
            }

        });

            $('#search').click(function() {
                var searchTerm = $('#search-text').val();
                if (searchTerm == promptText || searchTerm == '') {
					//alert("NNI");
					$(".searchtxt").html("Please enter a Keyword&nbsp;") ; 
                   // $(".site-search").jGrowlDabsWrapper('Please enter a search term in the box before clicking search', { tipPosition: 'topCentre', life: 4000, closeTemplate: '<img src="/images/1/v3/jgrowl/close-window.gif" alt="close" />' });
                    return false;
                }
            });

    });

