

/* called in header of supporting xhtml files -- redirects to flash page */

function Redirect()

{

	document.location.href="index.html";

}



/* returns view from the query string to the swfObject */

function get_view()

{	

	if(document.location.href.indexOf("?")!=-1) {

		var href	= document.location.href.split("?");

		var qstring	= href[1];

		var nameValue 	= qstring.split("=");

		var view 		= nameValue[1];	

		return view;

	}

}



			


