function picturePop(id){

	var width = -1*(document.getElementById('img_'+id).width)/2;
	var height = -1*(document.getElementById('img_'+id).height)/2;
	width += '';
	height += '';

//	alert(document.getElementById('img_'+id).clientWidth);
//	alert(document.getElementById('img_'+id).clientHeight);

	document.getElementById('picturePop_container').innerHTML = document.getElementById('photobox_'+id).innerHTML;
	document.getElementById('picturePop_container').style.margin = height+'px 0px 0px '+width+'px';
	//document.getElementById('picturePop_container').style.margin = '-500px 0px 0px -500px';
	Effect.Appear('picturePop_container', { duration: 0.3 });

}

function picturePopClose(){
	Effect.Fade('picturePop_container', { duration: 0.3 });
}

