

	// General //

	function obj(objectName){

		return document.getElementById(objectName);

	}

	function getFlashMovie(movieName) {

		var isIE = navigator.appName.indexOf("Microsoft") != -1;

		return (isIE) ? window[movieName] : document[movieName];

	}

	function logout() {

		window.location = "admin/index.php?action=logout";

	}

	// Images //

	function loadGallery(id){

		if(!getFlashMovie("gallery")){

			setTimeout("loadGallery("+id+")",100);

			return false;

		}

		try{

			getFlashMovie("gallery").loadGallery(id,"data/images.php?pi="+id);

		}catch(e){

			setTimeout("loadGallery("+id+")",100);

		}

	}

	// Gallery //

	function onGalListChange(index,value){

		loadGallery(value);

	}