function addtocart(product,price)
{

// check that there is an inscription

var product = product;
//var quantity = document.form2.qty.value;
var colour = document.getElementById('colour').value;
var size = document.getElementById('size').value;
var price = price;
if(size =='Choose') 
{
	alert('You have not entered a size');
	return
}
if(colour =='Choose') 
{
	alert('You have not entered a colour');
	return
}
var url="http://ww12.aitsafe.com/cf/add.cfm?userid=E3306914";
var url = url + "&product="+product;
var url = url + "&product="+product+' size:'+size+' colour:'+colour;
var url = url + "&price="+price;
//var url = url + "&qty="+quantity;


window.open(url,"mywindow","status=0,toolbar=0,width=970,height=820,scrollbars=1");
}



function viewcart()
{

javacript:window.open("http://ww12.aitsafe.com/cf/review.cfm?userid=E3306914","mywindow","status=0,toolbar=0,width=970,height=800,scrollbars=1");
}



