function getIds(ids) {
	var xmlHttp;
	try { xmlHttp=new XMLHttpRequest(); } catch (e) { try { xmlHttp=new ActiveXObject("Msxml2.XMLHTTP"); } catch (e) { try { xmlHttp=new ActiveXObject("Microsoft.XMLHTTP"); } catch (e) { return false; } } }
	xmlHttp.onreadystatechange = function() { if(xmlHttp.readyState == 4) { renewItems(xmlHttp.responseText); } }
	
	
	
	if (window.location.href.indexOf("www.pennyauctionsite.com") != -1) {
		xmlHttp.open("GET", "http://www.pennyauctionsite.com/down/info.php?ids=" + ids, true);
	} else if(window.location.href.indexOf("www.1pennyauction.com") != -1) {
		xmlHttp.open("GET", "http://www.1pennyauction.com/down/info.php?ids=" + ids, true);
	} else if(window.location.href.indexOf("1pennyauction.com") != -1) {
		xmlHttp.open("GET", "http://1pennyauction.com/down/info.php?ids=" + ids, true);
	} else {
		xmlHttp.open("GET", "http://pennyauctionsite.com/down/info.php?ids=" + ids, true);
	}
	xmlHttp.send(null);
}