function proceed(sku) {
    var url_params = document.location.search;
    if (url_params.charAt(0) == '?')
        url_params = '&' + url_params.substr(1);
    document.location = '/products.asp?action=show&product='+sku+'&ref=inktmgotohtmltest'+url_params;
}
function pop(page,width,height) {
    var MyWindow =    window.open(page,'mini_me','toolbar=no,location=no,directories=no,status=yes,menubar=no,scrollbars=yes,resizable=yes,width='+width+',height='+height+',left=80,top=20');
    MyWindow.focus();
}
