//
// main--title.js
//

function pageLoader(){
	
	var notesContent="<h1>Abstract</h1><p>Gladiator Components are an integrated set of high-level Asynchronous JavaScript and XML (AJAX) and Graphical User Interface (GUI) components on the cutting-edge of what can be achieved using AJAX and Scalable Vector Graphics (SVG) in the most advanced modern browsers.</p><p>By exploiting technical capabilities such as the ability to render SVG natively in compound XHTML+SVG documents in Firefox and Opera, we are focusing our efforts on getting the most out of the best browser platforms available, rather than scaling down our vision to eke the most out of lesser platforms. In this presentation we explore what we have achieved already and where we plan to go in the future as we create a platform for developing advanced applications in bioinformatics and other disciplines.</p>";
	var notesWindow = new gWindow("Presentation Abstract","notesWindow",300,125,600,450,notesContent,false);
	
	var notesButton = document.getElementById("navNote");
	
	function showNotes(){
		notesWindow.show(true);
	}
	
	notesButton.addEventListener("click",showNotes,false);
	
}


