
function clean_up() {
	var returnURL = getFlexApp().returnURL();
	$.ajax( {url:returnURL, type:"GET"} );
}

function getFlexApp() {
        if (navigator.appName.indexOf ("Microsoft") !=-1) {
            return window["Reader"];
        } else {
            return document["Reader"];
        }
}


