﻿/*
Called by SWF whenever a navigation button is clicked. 
Parameter @id: the string identifier of the clicked button.
*/

function goTo(id) {
	var url = id;
	if (url == 'skip') {
		url = 'home';
	}
	window.location.assign(url + ".html")
	//alert(url + ".html");
}
