function doBrowse(strArtNr)
{
   var arrUrl = window.opener.document.location.href.split('/');
   arrUrl[arrUrl.length-1] = 'productdetails.aspx?artikelnummer=' + strArtNr; // changes the scriptname.part

   window.opener.document.location = arrUrl.join('/');
   window.opener.focus();
}

function doNoOrder()
{
  alert("Dit artikel kan helaas niet online besteld worden");
}

function doOpenKoffieKadoBoekje()
{
   var arrUrl = document.location.href.split('/');
   arrUrl[arrUrl.length-1] = '';
   a = window.open('' + arrUrl.join('/') + "boekje/2010/","KoffieKadoBoekje","width=986,height=700,left=0,resizable=1");
}

function doOpenKoffieKadoBoekjeFeestdagen()
{
    return;
    // not available at the moment
   var arrUrl = document.location.href.split('/');
   arrUrl[arrUrl.length-1] = '';
   a = window.open('' + arrUrl.join('/') + "boekje/Feestdagen2009/index.html","KoffieKadoBoekjeFeestdagen","width=986,height=700,left=0,resizable=1");
}

function doOpenBoekje(strUrl, strTitle, strParam)
{
   var arrUrl = document.location.href.split('/');
   arrUrl[arrUrl.length-1] = '';
   a = window.open('' + arrUrl.join('/') + strUrl,strTitle,strParam);
}