﻿function openLargeView(url) {
    window.open(url, "View", "menubar=0,resizable=0,width=776,height=780")
}

function doSearch(q) {
    if (!q || q.length == 0)
        return;
   window.location.href = "Search.aspx?q=" + q;
}
function searchIfEnter(e) {
    if (e.keyCode == 13) {
        doSearch(document.getElementById('searchField').value)
    }
}

function openShoppingCart() {
    window.location.href = "http://02e2fc2.netsolstores.com/cart.aspx";
}


function newPopup(url, width, height) {
    var left = (window.screen.width - width) / 2;
    var top = (window.screen.height - height) / 2;
    var str = "location=0,status=0,scrollbars=0,menubar=0,resizable=0,width=" + width + ",height=" + height + ", top=" + top + ", left=" + left;
    var mywindow = window.open(url, "", str);
    mywindow.focus();
}

