﻿function Ajax(){
var xmlHttp;
	try{	
		xmlHttp=new XMLHttpRequest();// Firefox, Opera 8.0+, Safari
	}
	catch (e){
		try{
			xmlHttp=new ActiveXObject("Msxml2.XMLHTTP"); // Internet Explorer
		}
		catch (e){
		    try{
				xmlHttp=new ActiveXObject("Microsoft.XMLHTTP");
			}
			catch (e){
				alert("No AJAX!?");
				return false;
			}
		}

	}

xmlHttp.onreadystatechange=function(){
	if(xmlHttp.readyState==4 && xmlHttp.status == 200){
		document.getElementById('rates').innerHTML=xmlHttp.responseText;
		setTimeout('Ajax()',1000);
	}

}
var randomnumber = Math.floor(Math.random()*1000001)
xmlHttp.open("GET", "quotes3.php?dummy="+ randomnumber ,true);
xmlHttp.send(null);
}

window.onload=function(){
	setTimeout('Ajax()',1000);
}