function onLinkSeries(id) {

	if (document.getElementById('sd'+id) != null)
	{
	document.getElementById('sd'+id).style.textDecoration='underline';
	}
//	document.getElementById('pd'+id).style.textDecoration='underline';
	//document.getElementById('pd'+id).style.color='#9e088f';
}


function offLinkSeries(id) {
	if (document.getElementById('sd'+id) != null)
	{	
	document.getElementById('sd'+id).style.textDecoration='none';
	}
//	document.getElementById('pd'+id).style.textDecoration='none';
	//document.getElementById('pd'+id).style.color='black';
}



	

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) 
{
	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 = 'Search by keyword or 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("ENTER:&nbsp;");
					$(".searchbox").addClass("redtxt"); 					 
                   // $(".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;
                }
            });

    });











