// JavaScript Document


product = {
 'SA-12-DP' : {
  'no_option': 'http://www.mcssl.com/SecureCart/SecureCart.aspx?mid=BED4952F-2DE1-4569-831B-4086DB4BD2A3&amp;pid=d80e2be6fcc9968fc71586f602c32250'
  }
};


function exists(product){
	if (eval(product)) {
		return true;
	}
	else{
		return false;
	}
}

function getUrl(product){
	if(exists(product){
	  return eval(product);
	}
	else{
	  alert("ERROR: " + product +" not in database.");
	}
}

function addToCart(product_id){
	var sel = document.getElementById('product_id');
	var color = sel.innerHTML;
	alert(id+" "+color);
}

types = {
 'bib' : { 'red':'t', 'green':'t'},
 'bob' : { 'red':'t', 'yellow':'t'}
};

gotit("types.bib.red");
gotit("types.bib.yellow");

function gotit(type) {
       if (eval(type)) {
               alert("got " + type);
               alert("evaled: " + eval(type));
       } else {
   alert("don\'t got " + type);
 }
}
