function displayOLD(pic,index,basic_price,price,category,name)
{
    document.images[index].src=pic;
var new_price = basic_price + price

if(price==0)
{
    document.getElementById("your_price_total").innerHTML = "<p>&pound;"+price+"</p>";
}
else
{
    document.getElementById("your_price_total").innerHTML = "<p>&pound;"+new_price+"</p>";
}

var spec_name = "spec_"+ category;

document.getElementById(spec_name).innerHTML = name;

}


function display(pic,index)
{
    /*document.images[index].src=pic;*/
    document.getElementById(index).src=pic;
    width='100px';
    document.getElementById(index).style.width=width;

}
