function invokeGameFinder(name,thumbNail, price, id, buyURL){
    jQuery('a[rel*=facebox]').facebox();
	var url = "/html/buygame/popup.jsp?name="+name+"&prodthumb=" + thumbNail + "&price=" + price +"&productId="+id+"&buyURL="+buyURL+"&unlimitedprice=";
	jQuery.facebox({ ajax: url }); 
	this.href=url;
	 
	}

	function invokeGameFinder(name,thumbNail,price,unlimitedprice,id){
    jQuery('a[rel*=facebox]').facebox();
	var url = "/html/buygame/popup.jsp?name="+name+"&prodthumb=" + thumbNail + "&price=" + price +"&unlimitedprice="+unlimitedprice+"&productId="+id;
	jQuery.facebox({ ajax: url });
	this.href=url;
	 
	}
