var currentdiv = '';


function addproducts(mystuff)
{
//document.getElementById('product').innerHTML = "this is "+mystuff;
//document.getElementById('product').innerHTML = '<'+'object id="foo" name="foo" type="text/html" data="'+mystuff+'"><\/object>";
}

function changecenter(url,id)
{
//document.getElementById('centerprod').innerHTML = "<img src="+imgg+" WIDTH=600 HEIGHT=301> ";
currentdiv = id;
processAjax(url);
}

function processAjax(url) {


if (window.XMLHttpRequest) { // Non-IE browsers
req = new XMLHttpRequest();
req.onreadystatechange = targetDiv;
try {
req.open("GET", url, true);
} catch (e) {
alert(e);
}
req.send(null);
} else if (window.ActiveXObject) { // IE
req = new ActiveXObject("Microsoft.XMLHTTP");
if (req) {
req.onreadystatechange = targetDiv;
req.open("GET", url, true);
req.send();

}
}
}

function targetDiv() {
if (req.readyState == 4) { // Complete
if (req.status == 200) { // OK response
document.getElementById(currentdiv).innerHTML = req.responseText;
} else {
alert("Problem: " + req.statusText);
}
}
} 
