function SWFAddressSetValueByProxy (deepLinkValue){
	//alert("deepLinkVal" + deepLinkVal);
	findTheMovie("core").changeAdressWithoutListenerAs(deepLinkValue);

}



function findTheMovie(movieName) {
	 
	if(navigator.appName.indexOf("Microsoft") != -1){
		
		return window[movieName]
		
	}else{
		 	
		return document[movieName]
		
	}	
}
			
		