function openFotoDivOnly () {
	var oGreyDiv = document.getElementById('grey');
	//gray overlay first
	//header height
	var scrolled  = GetScrollTop();
	var greyHeight = document.getElementById('banner_pic').offsetHeight;
	greyHeight += document.getElementById('bottomspacer').offsetHeight;
	greyHeight += document.getElementById('content').offsetHeight;
	greyHeight += document.getElementById('footer').offsetHeight;
	greyHeight += document.getElementById('topspacer').offsetHeight;
	greyHeight += 20;
	oGreyDiv.style.position = 'absolute';
	oGreyDiv.style.left = '0px';
	oGreyDiv.style.top = '0px';
	oGreyDiv.style.visibility = 'visible';
	oGreyDiv.style.width = '100%';
	oGreyDiv.style.height = greyHeight+'px';
	
	//now the normal div
	theDiv = document.getElementById('bigFoto');
	
	theDiv.style.visibility = 'visible';
	theDiv.style.height 	= '100%';
	theDiv.style.width 		= '100%';
	//place the div
	theDiv.style.position = 'absolute';
	theDiv.style.top = (20+scrolled)+"px";
	theDiv.style.left = "0px";
}
