function AddToCard(pid){
	var ctr = 'cmbProductOptions_'+pid;
	var optid = 0;
	if(document.getElementById(ctr) != null){
		if(document.getElementById(ctr).value != ""){
			optid = document.getElementById(ctr).value;
		} else {
			alert('Please select an option');
			return false;
		}
		//alert(optid);
	}
	url = 'mycart.php?addtocart=yes&productid='+pid+'&quantity=1&option='+optid+'';
	window.location = url;
}
