// JavaScript Document
function ajaxLoader(url,id) { // based on http://javascript.internet.com/ajax/ajax-loader.html
  
  if (document.getElementById) {
	  var x = (window.ActiveXObject) ? new ActiveXObject("Microsoft.XMLHTTP") : new XMLHttpRequest();
  }
  
  try {
	  if (x) {
		  x.onreadystatechange = function() {
			  if (x.readyState == 4 && x.status == 200) {
				  el = document.getElementById(id);
				  el.innerHTML = x.responseText;
			  }
		  }
		  x.open("GET", url, true);
		  x.send(null);
	  }
  }
  catch(err) {
	  el = document.getElementById(id);
	  el.innerHTML = '<iframe src="' + url + '" width="780" height="600"></iframe>';
  }
	
}

function fetchPublist(page) {
	if(page == 1) {
		ajaxLoader('eprints.txt','contentLYR');
	}
}