/*	test: bestellen via ajax op generiek domein	*/
function xBestel(productId)	{
	get = "xml_bestel.php?productId="+productId
	loadXMLDoc(get, cbXbestel);
}

function cbXbestel()	{
	if ((req.readyState == 4) && (req.status == 200)) {
		aISBN = req.responseXML.getElementsByTagName("productId");
		if(aISBN[0].firstChild)	{
			alert(aISBN[0].firstChild.data);
		}
	}
}
