function popup () { 
 			if (confirm('Download WassPoker for free and get a $500 welcome bonus?')) document.location='http://www.wasspoker.com/download.php'
 		}
 		function addCommas(nStr)
 		{
 			nStr += '';
 			x = nStr.split('.');
 			x1 = x[0];
 			x2 = x.length > 1 ? '.' + x[1] : '';
 			var rgx = /(\d+)(\d{3})/;
 			while (rgx.test(x1)) {
 				x1 = x1.replace(rgx, '$1' + ',' + '$2');
 			}
 			return x1 + x2;
 		}
 		function xmlhttpQuery(strURL)
 		{
 			var xmlHttpReq = false;
 			var self = this;
 			// Mozilla/Safari
 			if (window.XMLHttpRequest && typeof document.namespaces == 'undefined')
 			{
 				self.xmlHttpReq = new XMLHttpRequest();
 			}
 			// IE
 			else if (window.ActiveXObject)
 			{
 				self.xmlHttpReq = new ActiveXObject("Microsoft.XMLHTTP");
 			}
 			// IE 7
 			else
 			{
 				self.xmlHttpReq = new window.XMLHttpRequest();
 			}
 			self.xmlHttpReq.open('GET', strURL, true);
 			self.xmlHttpReq.onreadystatechange = function()
 			{
 				if (self.xmlHttpReq.readyState == 4)
 				{
 					drawOut(self.xmlHttpReq.responseText);
 				}
 			}
 			self.xmlHttpReq.send(null);
 		}
 		function drawOut(aDom)
 		{
 			var amount = 0;
 			var re = /([0-9.]+)<[^>]+>\s*<[^>]+>([0-9.]+)<[^>]+>\s*<[^>]+>([0-9.]+)/i;
 			if(aDom.match(re))
 			{
 				amount1 = eval("RegExp.$"+'1');
 				amount2 = eval("RegExp.$"+'2');
 			}

 			var mySpan = document.getElementById("jackpot1");
 			mySpan.innerHTML = '$'+addCommas(amount1);
 			var mySpan = document.getElementById("jackpot2");
 			mySpan.innerHTML = '$'+addCommas(amount2);

 		}
 		function jackpots () {
 			window.setInterval('xmlhttpQuery("feeds/jackpots.php")',5000);


 		}