<!-- DOJO Setup -->
//var djConfig = {isDebug: true};
    dojo.require("dojo.event.*");
	dojo.require("dojo.widget.*");
	dojo.require("dojo.widget.Button");
	dojo.require("dojo.widget.ContentPane");
	dojo.require("dojo.uri.Uri");

	var cpane = null;

	function gotoPage(newContentURL) {
       location.href=newContentURL;
	   //display.setUrl(newContentURL);
	   //display.setUrl(newContentURL);
	}	
	
	// Link buttons to callbacks
	function init() {
	   display = dojo.widget.byId("display"); 
	   dojo.event.connect(display, "onDownloadStart", "A loading message", "show");
	}
	
	dojo.addOnLoad(init);
	

