$(function(){
	$("#floatbg").click(function(){
		closeBox();
	})
})

function contents(){
	document.write('<iframe src="main.html" name="top_iframe" id="top_iframe" width="100%" height="100%" frameborder="0" scrolling="no" allowtransparency="true">この部分はインラインフレームを使用しています。</iframe>');
setTimeout("frame_check()",5);
}

function frame_check(){
    f=document.body.clientHeight - 97;
	if(f>600) {
    document.getElementById("top_iframe").height=f;
    setTimeout("frame_check()",30);
	}else{
    document.getElementById("top_iframe").height=600;
    setTimeout("frame_check()",30);
}
}

function lightBox(){
	$("#float").css("display", "block");
	
	setPopSize();
	$(window).bind("resize", setPopSize);
	$("#floatcontents").animate({
		height: 620
	},200);
}

function setPopSize(){
	var w = $(window).width();
	var h = $(window).height();
	
	var pw = (w < 900) ? 900 : w;
	var bgh = (h < 497) ? 497 : h;
	$("#float, #floatbg").width(w);
	$("#float, #floatbg").height(bgh);
	var top = (h>620) ? ((h-620) / 2) : 0;
	var left = (w>752) ? (w-752) / 2 : 0;

	$("#floatcontents").css({
		"top": top,
		"left": left
	});
}

function closeBox(){
	$("#floatcontents").animate({
			height: 0
		}, 200, function(){
			$("#float").css("display", "none");
			$(window).unbind("resize", setPopSize);
		});
}
