function photo_view(id,file,width,height)
{
	X_photo = (document.body.clientWidth - width - 22)/2 + document.body.scrollLeft;
	Y_photo = (document.body.clientHeight - height - 30)/2 + document.body.scrollTop;
	X_window = document.body.clientWidth + document.body.scrollLeft;
	Y_window = document.body.scrollHeight;
	
	if(document.getElementById("bigphoto_img_"+id+"").src.length == 0){document.getElementById("bigphoto_img_"+id+"").src="/base_images/photos/"+file+"";}
	document.getElementById("bigphoto_img_"+id+"").width = width;
	document.getElementById("bigphoto_img_"+id+"").height = height;
	
	document.getElementById("bigphoto_"+id+"").style.left = X_photo+"px";
	document.getElementById("bigphoto_"+id+"").style.top = Y_photo+"px";
	document.getElementById("bigphoto_"+id+"").style.display="block";
	
	document.getElementById("galary_gray_div").style.width = X_window+"px";
	document.getElementById("galary_gray_div").style.height = Y_window+"px";
	document.getElementById("galary_gray_div").style.display="block";
	
	PhotoTimeout = setTimeout("photo_view('"+id+"','"+file+"','"+width+"','"+height+"');",500);
}


function photo_close(id)
{
	document.getElementById("bigphoto_"+id+"").style.display="none";
	document.getElementById("galary_gray_div").style.display="none";
	clearTimeout(PhotoTimeout); 
}
