/*
*
* Function to compute
* the right box size
* for the photo box
* to be included in
* main FTB page
*
*/
function size() {
	var topmar = 80;
	var bottommar = 45;

	var main_height = Math.max(425,$(window).height()-topmar-bottommar);
	

	/*var main_height=700;*/
	var frame_height = Math.max(375,$(window).height()-topmar-bottommar);

	$("#main").height(main_height);
	$(".replaced").height(frame_height-50);
}

