// Send url from address bar to flash - called from flash
function readURLFromJS(){
	return(document.location.href);
}

// Display url to address bar from flash - called from flash
function sendURLToJS(url){
	window.location.href = url;
	return true;
}




