function swfName(str) {
	if (navigator.appName.indexOf("Microsoft") != -1) {
		return window[str];
	}else {
		return document[str];
	}
}
function setURL(){
	var tURL = document.URL.slice(document.URL.lastIndexOf("?")+1);
	swfName("index").setURLforFlash(tURL);
}
