// this grabs anything rfom the query string and adds it to the flash url
// ============ parse the query string into an associative array -->
var queryObject = new Object();
var queryString = document.location.href.substring(document.location.href.lastIndexOf("?") + 1, document.location.href.length);
var querySplit = queryString.split("&");
var queryCount = querySplit.length;
for (var i = 0; i < queryCount; i++) {
	var itemSplit = querySplit[i].split("=");
	if (itemSplit[0] != "" && itemSplit[0] != null) {
		queryObject[itemSplit[0]] = itemSplit[1];
	}
}
