var croppingFormBox = {
show: function(){
alert($('#owner_photo_thumb').height());
if ($(window).height()>($('#owner_photo_thumb').height()+120))
$('#box_layer_bg').css("height", $(window).height());
else
$('#box_layer_bg').css("height", $('#owner_photo_thumb').height()+120);
alert($('#box_layer_bg').height());
$('#box_layer_bg').css("width", $(window).width());
$('#box_layer_wrap').css("width", $(window).width());
$('#box_layer_bg').css("display", "block");
$('#box_layer_wrap').css("display", "block");
},
hide: function(){
$('#box_layer_bg').css("display", "none");
$('#box_layer_wrap').css("display", "none");
}
}