// JavaScript Document

function check_domain(id,domain,tld,requestedtld){

$.ajax({
  type: "POST",
  url: "[%url%]ishopstudio.com/factory/ajax.php",
  data:  { trigger: "checkdomain",id: id, domain: domain, tld: tld, requestedtld: requestedtld },
  cache: false,
  success: function(html){
     $("#"+id).html(html);
   }
 });
 
 return false;
 
}



/*
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;
	
}
*/