// JavaScript Document
	var xro = false;
	if(window.XMLHttpRequest) {
		xro=new XMLHttpRequest();
	}
	else if(window.ActiveXObject) {
		xro= new ActiveXObject("Microsoft.XMLHTTP");
	}
	function showcell(stype)
	{
                if(stype==1)
                  var url="http://www.gilnelson.com/intro.html";
                else if(stype==2)
                  var url="http://www.gilnelson.com/books.html";
                else if(stype==3)
                  var url="http://www.gilnelson.com/sampleimages/";
                else if(stype==4)
                  var url="http://www.gilnelson.com/interests.html";
                else if(stype==5)
                  var url="http://www.gilnelson.com/bio.html";
                else if(stype==6)
                  var url="http://www.gilnelson.com/stockimages/";
                else if(stype==7)
                  var url="http://www.gilnelson.com/stockimages/searchavailable.php";
                else if(stype==8)
                  var url="http://www.gilnelson.com/sampleimages/photocredits.html";
                else if(stype==9)
                  var url="http://www.gilnelson.com/articles2.html";
               else if(stype==10)
                  var url="http://www.gilnelson.com/surveys.html";
                else
		  var url="http://www.gilnelson.com/intro.html";
		if(xro) {

			xro.open("GET",url,true);
			
			xro.onreadystatechange=function()
			{
				if (xro.readyState==4 &&
					xro.status==200) {
document.getElementById("displaycell").innerHTML=xro.responseText;
				}
			}
			xro.send(null);
		}
	}


