var bn_switch;
bn_switch = true ;
function change(){
	var ifr = document.getElementById('ifr');
	if(bn_switch == true ){
//　　　下記 replace("○○○○.html")　の部分を一番最初に表示されるhtmlファイル名に書き換える！
		ifr.contentWindow.location.replace("guest_nail/guest0019.html");
		ifr.height = "320";
		document.getElementById("bn_btn").src = "img/top/back_num2.gif"; //動かす場合は押した時の画像を
		bn_switch = !bn_switch ;
	}else{
		ifr.contentWindow.location.replace("guest_nail/top.html");
		ifr.height = "1000";
		document.getElementById("bn_btn").src = "img/top/back_num.gif";//動かす場合は元の画像を
		bn_switch = !bn_switch ;
	}		
}
