// JavaScript Document
function disableFlash() {
			try {
			$('#flashContent').get(0).disableHeader();
			}
			catch(err) {
				// no flash to catch
			}
}

function enableFlash() {
			try {
			$('#flashContent').get(0).enableHeader();
			}
			catch(err) {
				// no flash to catch
			}

}
