var running = false;
var first = true;
var path = "";

 /**
 * uploader status changed notification
 */
 function uploaderStatusChanged( uploader ) {
    if( uploader.isReady() ) {
       var form = document.getElementById('albumForm');
	   window.location.href = "http://gallery.dmaicher.de/addAlbum2.php?submited=saveAlbum&category="+form.category.value+"&title="+form.title.value+"&thumb="+form.thumb.value;
    }
 }

function highlight(id){
	var img = document.getElementById(id);
	img.style.MozOpacity='0.6';
	img.style.filter='alpha(opacity=60)';
}

function unHighlight(id){
	var img = document.getElementById(id);
	img.style.MozOpacity='1.0';
	img.style.filter='alpha(opacity=100)';
}



