// JavaScript Document


////////////////////////////////////////////////////////////////////

/*
function addToBasket() {
	
var a = "";
var b = "";
var x;

for(var i=0;i<10;i++){
	
	var therowid = "row_"+i;
	var theid = "buy_row_"+i;

	x = document.getElementById(therowid).getElementsByTagName('td')[0].innerHTML;
	price = document.getElementById(therowid).getElementsByTagName('td')[4].innerHTML;

if(document.getElementById(theid).checked==true) {
	a+=x;
	b+=price;
}else{
	a+="";
	b+="";
}
}


	$.ajax({
		type: "POST",
		url: "http://localhost/~michael/Domain God/Site/ishopstudio.com/factory/ajax.php",
		data: { trigger: "buydomain", domains: a, price: b },
		cache: false,
		success: function(html){
			window.location = "basket.php";
		}
	});

	return false;
	
}
*/
