<!--
function popupWindow(url)
{
    window.open(url,'Big_Picture','toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=no,copyhistory=no,width=650,height=650,top=0,left=0');
    //return true;
}
function productSearch()
{
    var val = document.forms[0].keywords.value;
    //if(val != null && val.length > 3){
        location.href = '/ProductSearchResult.aspx?keyword=' + val;
    //}else{
    //    alert('The keyword is too short');
    //}
}
function testForEnter() 
{    
    if (event.keyCode == 13) 
    {        
        event.cancelBubble = true;
        event.returnValue = false;
    }
}
function pageSkip(){
    var val = document.forms[0].pageSelect.options[document.forms[0].pageSelect.selectedIndex].value;
    location.href = '/products/page' + val + '.aspx';
} 
function pageSkip2(){
    var val = document.forms[0].pageSelect2.options[document.forms[0].pageSelect2.selectedIndex].value;
    location.href = '/products/page' + val + '.aspx';
} 
function pageFeaturedSkip(){
    var val = document.forms[0].pageSelect.options[document.forms[0].pageSelect.selectedIndex].value;
    location.href = '/productsfeatured/page' + val + '.aspx';
} 
function pageFeaturedSkip2(){
    var val = document.forms[0].pageSelect2.options[document.forms[0].pageSelect2.selectedIndex].value;
    location.href = '/productsfeatured/page' + val + '.aspx';
}

function pageSearchSkip(){
    var val = document.forms[0].pageSelect.options[document.forms[0].pageSelect.selectedIndex].value;
    location.href = '/ProductSearchResult.aspx?pageNumber=' + val;
} 
function pageSearchSkip2(){
    var val = document.forms[0].pageSelect2.options[document.forms[0].pageSelect2.selectedIndex].value;
    location.href = '/ProductSearchResult.aspx?pageNumber=' + val;
} 

function AddToCart(prodID){
    location.href = '/ShoppingCart.aspx?prodID=' + prodID;
}

//--->
