function add2cart(url){
	
	extra=['quantity','color','size'];
	
	for(i=0;i<extra.length;i++){
		if(document.getElementById(extra[i]))
		url+='&'+extra[i]+'='+document.getElementById(extra[i]).value;
	}
	
	window.location=url;
	
}