
function go_to_basket(varLink) {
var specInteger, specString, colourInteger, colourString, productIDString, ranNumber
specInteger=document.buylink.specselect.selectedIndex
specString=document.buylink.specselect.options[specInteger].value
colourInteger=document.buylink.colourselect.selectedIndex
colourString=document.buylink.colourselect.options[colourInteger].value
//ranNumber=Math.floor(Math.random()*1000000);
ranNumber=(new Date).getTime()

window.open("/cgi-bin/basket.cgi?conlink=" + varLink + "&items=" + specString + colourString + "&control=Add&" + ranNumber, "_self")
}


