function rssread(g){
var xmlhttp = false;
var shurui = g;
if(window.ActiveXObject){
	try{var xmlhttp = new ActiveXObject("Msxml2.XMLHTTP");}
	catch(e){
		try{var xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");}
		catch(e2){return null;}
	}
}
else if(window.XMLHttpRequest){var xmlhttp = new XMLHttpRequest();}
else {return null;}

	xmlhttp.open("GET",'http://www.pet-ei.com/foster/callrss.php?shubetsu='+shurui,false);
	xmlhttp.send(null);
	var resdata = xmlhttp.responseText;
	document.write(resdata);
}
