function drawTable() {
document.writeln("<html><head><title>Introduction to Arcview 101</title><link rel=stylesheet href='../shared/css/format.css' type='text/css'><noscript><a href='arcview_noscript.htm'>Click here to go to the no JavaScript page</a></noscript></head>");
var p1="<center><img src='../shared/images/title.jpg' alt='Spatial Analysis Laboratory Logo'><div class='subtitle'>Intro to Arcview 101</div></center>";
var p2="<p></p>ArcView GIS is a full-fledged power tool, able to do a wide array of mapping and analysis functions. The magic of GIS is its capacity to help the user explore data in innumerable ways. There are so many options for working with GIS that it is impossible to show more than a brief set of examples.<br>";
var p3="<br>Below is a sequence of animated GIF images created using ArcView GIS. They show the process of creating from scratch maps and tables and charts from data that is available on this Site. It is not so important that you understand exactly what is being portrayed in each image. Rather, what you need to see is that, with GIS, the user creates and constantly refines the map. Making these decisions, and being able to do so over and over again in seconds, the user can learn more about the topic than is possible with just static maps.<br><br><br>";
var tableTop=''+p1+p2+p3+"<table cellspacing='5' cellpadding='5' border='1' bgcolor=#3C6580 bordercolor=#13C000 width='100%'><tr>";
var counter=new Array("When you begin a project in ArcView GIS, you get to design the map from scratch, but it's easy with pre-constructed data.",
"Using GIS, you design the map as you see fit, selecting the colors and ways of classifying data.",
"With GIS, you control the map projection and the scale to which you are zoomed in or out.",
"GIS allows you to add new data sets at any time, and to control which layers are lowest and which ones are topmost on the map.",
"GIS makes it easy to change the way a set of data is classified, and you can see the results immediately. And when it's time to save, ArcView GIS lets you preserve the work in the current state.",
"On the fly, you can change the field being mapped, create custom classifications, and apply new colors as desired.","You control all the characteristics of a map display, including what the legends look like and how much information can be seen.",
"Even more powerful than the ability to visualize data is the power to analyze it. ArcView GIS lets you ask questions and explore the results in both map and table form.",
"You can create these queries in the map and see the results in the table, or you can query the table and see the results in the map.",
"Of course, at any time, you can zoom in and out, change the selection set, identify a feature and its characteristics, or ask the computer to help find a feature.",
"Because you can sort tables by names or numbers, from bottom to top or top to bottom, new patterns can emerge all the time.",
"Powerful as they are, maps and tables can be enhanced even more by creating charts to emphasize just certain characteristics of geographic features.");

    var x;
    var fixed;
    document.writeln(tableTop);
  
	for (var i=0; i<12; i++) {
		x=i+1;		
		fixed=fixNum(x);		
  		document.writeln("<td valign='top' width='10%'>");
		document.writeln("<a href='images/avani"+fixed+".gif'>Part "+x+"</a>");
		document.writeln("</td><td valign='top'>");
		document.writeln("<a href='images/avani"+fixed+".gif'><img src='images/avx"+fixed+".gif' alt='A picture linking to an Arcview tutorial' border='0'></a>");
		document.writeln("</td><td valign='top'>");
		document.writeln(counter[i]);
	
		if (i<11)
			document.writeln("</td></tr><tr>");
		else
			document.writeln("</td></tr></table>");
	}	

 	function fixNum(q) {
		if (q>9) return q;
		else return ('0'+q);
	}

   document.writeln("<br><br><a href='../explore/moreinfo.htm'><h6>Get more information about ArcView from ESRI</h6></a>");

document.writeln("<iframe src='../shared/bottom.htm' width='100%' frameborder='0' scrolling='no' marginheight='10'>");
var quotemark='"';
var q="<a href='#' onClick="+quotemark+"window.location.replace='arcview_noscript.htm';"+quotemark+">Click here to view this page</a>";
document.writeln(q);

document.writeln("</iframe></body><!--Designed by Aaron Zeide, Summer 2001, ajzeide@artsci.wustl.edu--></html>");


}
