dojo.require("dijit.Dialog");

//create a Dojo dialog
var SITE_URL = "http://www.sherbertia.com/dojoinc/";
var serverDlg;
dojo.addOnLoad(function() {
	serverDlg = new dijit.Dialog({
		style: "width: 625px"
	});
});

function showFGServerDialog() {
	serverDlg.attr("title","FlightGear Server Status");
	serverDlg.attr("href","/dojoinc/server_status.php");
	serverDlg.show();
}

function showSurveyDialog() {
	serverDlg.attr("title","hosting Survey");
	serverDlg.attr("href","http://www.surveymonkey.com/s/T6RWVZ5");
	serverDlg.show();
}

function showMapDialog() {
	serverDlg.attr("title","Map your area");
	serverDlg.attr("href","/dojoinc/maps.php");
	serverDlg.show();
}
