function ajaxLoadPartsList(sID)
{
var xmlHttp;
try
  {
  // Firefox, Opera 8.0+, Safari
  xmlHttp=new XMLHttpRequest();
  }
catch (e)
  {
  // Internet Explorer
  try
    {
    xmlHttp=new ActiveXObject("Msxml2.XMLHTTP");
    }
  catch (e)
    {
    try
      {
      xmlHttp=new ActiveXObject("Microsoft.XMLHTTP");
      }
    catch (e)
      {
      alert("Your browser does not support AJAX!");
      return false;
      }
    }
  }
  xmlHttp.onreadystatechange=function()
    {
    if(xmlHttp.readyState==4)
      {
	  var myString = document.getElementById("debug");
	  var sTitle 	= "This is my title";
	  var sPartNo 	= "This is my part no";
	  var sDesc 	= "This is my desc no";
	  var sPrice 	= "This is my price";
	  var sPhoto 	= "This is my phto";	  
	  	  	  
	  myString.innerHTML = xmlHttp.responseText;
	  alert(xmlHttp.responseText);
      }
    }
	var sID = 'MBL0290,MBL1248';
	var sQuery = "http://www.lambrettaspares.com/data/interactive.php?productid=" + sID;
	var sQuery = "http://www.lambrettaspares-micro.co.uk/test2/test.php?productid=" + sID;
	alert(sQuery);
	
	  var myString = document.getElementById("debug");
	  myString.innerHTML = sQuery;	  	
//  sQuery = "time.php";
  xmlHttp.open("GET",sQuery,true);
  xmlHttp.send(null);
  }

//  sID = 'MBL0290,MBL1248';
//  xmlHttp.open("GET","http://www.lambrettaspares.com/data/interactive.php?productid=" + sID,true);
  
function ajaxFunction(sID) {	
	
	var xmlHttp;
	try {
	  // Firefox, Opera 8.0+, Safari
	  xmlHttp=new XMLHttpRequest();
	  }
	catch (e)  {
	  // Internet Explorer
	  try   {
		xmlHttp=new ActiveXObject("Msxml2.XMLHTTP");
		}
	catch (e) {
		try {
		  xmlHttp=new ActiveXObject("Microsoft.XMLHTTP");
		  }
		 catch (e) {
		 	alert("Your browser does not support AJAX!");
			return false;
			}
		}
	}
  xmlHttp.onreadystatechange=function()
    {
    if(xmlHttp.readyState==3)
      {
	  alert('3');
	  }
    if(xmlHttp.readyState==4)
      {
	  alert('123');
	  debug= document.getElementById("debug");
	  debug.innerHTML=xmlHttp.responseText;
		
		//actual code
		var myString 	= xmlHttp.responseText;
//		var myArray 	= myString.split('|');
//		var sID 		= myArray[0];
//		var sTip 		= myArray[1];
		var sPrice 	= document.getElementById("price_01");				
		sPrice.innerHTML = '5408912380912';
//		getvalue = document.getElementById("mainimage").setAttribute("src", sReplace);

		
			//execute tooltip						

		
		//execute image swap	


	  
//	  getvalue = document.getElementById(sID).setAttribute("onmouseover",sTip);
//	  alert(getvalue);
	  
      }
    }

	sID = 'MBL0290,MBL1248';
  sQuery = 'http://www.lambrettaspares.com/data/interactive.php?productid=' + sID;
  alert(sQuery);
  xmlHttp.open("GET",sQuery,true);
  xmlHttp.send(null);
  }


