// ---------------------------------------------------
// 自動フレームセット生成スクリプト
if(top.frames.length==0)
{
	var frameURL  = document.URL;
	var url = "http://www.laracity.com/autoframeset.php?url=" + frameURL;

//	open(url);
	popup(url);

	location.href = "http://www.laracity.com/";
}
function popup(url)
{
	var size = "width=760,height=616,status=yes";	// 他のOS、ブラウザ用
	if (navigator.appVersion.indexOf("Mac") > 1 && navigator.appName.charAt(0) == 'M')
	{
		size = "width=744,height=600,status=yes";	// Mac、IE用
	}
//	w=window.open(url, "child", size);
	w=window.open("", "child", size);
	w.moveTo(0, 30);
	w.location.href = url;
}
