// JavaScript Document

function popup_img(img) {
		
	var tmp = new Image();
	tmp.src = img.src;
	
	t_width = tmp.width + 30;
	t_height = tmp.height + 30;
	
	window.open(tmp.src, '', 'width='+t_width+', height='+t_height);
		
}

function gallerie_img(imgpath) {
		
	var tmp = new Image();
	tmp.src = imgpath;
	tmp.align = "center";
	
	var i=0;
	/*while(tmp.complete != true){
		window.status = i;
		i++;
	}*/
	//alert(i);
	showimg(tmp);
}


function showimg(img) {
	
	//alert(img.width);
	
	t_width = 670;
	t_height = 670;
	
	window.open(img.src, '', 'width='+t_width+', height='+t_height);
}

function gallerie_img2(gallid, imgid, imgsize)
{

	window.open('gallimg.php?ids='+ gallid + '|' + imgid + '&size='+imgsize , '','width=200, height=200, status=yes, resizable=yes');

}


	
	function show(obj)
	{
		//alert(obj.childNodes[2].id);
		//alert("fuk");
		var menu = obj.childNodes[2];
//		var l = document.getElementById("site").offsetLeft;
//		var left = l + obj.offsetLeft;
//		menu.style.left = left;
//		menu.style.top = 170;
		menu.style.display = "block";
	}
	
	function hide(obj)
	{
		var menu = obj.childNodes[2];
		menu.style.display = "none";
	}
