// JavaScript Document
function loadHTMLFile1(fName){
	new Ajax.Request(fName,{ method: "get", onComplete: displayData1 });
}
function displayData1( httpObj){
	if(httpObj.responseText != ''){
		$("ajax_info_archive").innerHTML = httpObj.responseText;
	}
}

window.onload = function(){
	var t = new Date();
	loadHTMLFile1('../ajax/info_menu.php?c=w&'+t);
}
