// Russell Thompson
// Project: New Smyrna Beach Condo
// Page: JavaScript Code All Pages
// March 2006 - v1.0

// this goTo works from all pages except index.html
// also see function indexGoTo below
function goTo(theLocation) 
	{
		switch(theLocation)
		{
			case "home":
				var theURL = "../index.php";
			break;

			case "gallery":
				var theURL = "gallery.php";
			break;

			case "reservations":
				var theURL = "reservations.php";
			break; 

			case "area":
				var theURL = "area.php";
			break; 

			case "rates":
				var theURL = "rates.php";
			break;
		}
		window.location.href = theURL;
	}
	
	function indexGoTo(theLocation) 
	{
		switch(theLocation)
		{
			case "home":
				var theURL = "index.php";
			break;

			case "gallery":
				var theURL = "pages/gallery.php";
			break;

			case "reservations":
				var theURL = "pages/reservations.php";
			break; 

			case "area":
				var theURL = "pages/area.php";
			break; 

			case "rates":
				var theURL = "pages/rates.php";
			break;
		}
		window.location.href = theURL;
	}
	
	function affiliateGoTo(theLocation) 
	{
		switch(theLocation)
		{
			case "home":
				var theURL = "../index.php";
			break;

			case "gallery":
				var theURL = "../pages/gallery.php";
			break;

			case "reservations":
				var theURL = "../pages/reservations.php";
			break; 

			case "area":
				var theURL = "../pages/area.php";
			break; 

			case "rates":
				var theURL = "../pages/rates.php";
			break;
		}
		window.location.href = theURL;
	}
