// JavaScript module by Evgen3d www.evgen3d.com
function show_layer(obj){

var bla = document.getElementById(obj);
if(bla.style.visibility == 'hidden') 
{ 

bla.style.visibility = 'visible'; 
} else {
	bla.style.visibility = 'hidden';
}
}
function animate(obj){
	
	//obj.style.width++;
}
function open_layer(id){
	
	var image = document.getElementById('img');
	show_layer('imgback');
	image.src="http://new.thedanielart.com/getimg.php?id="+id;
}
function open_layer_direct(path){
	
	var image = document.getElementById('img');
	show_layer('imgback');
	image.src="upload/images/"+path;
}