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