//ダウンロード防止処理
//拡大図/写真
function setPicture(){

	var i = 0;
	var objPct;
	var objSpc;
	while(document.getElementById("pct" + i)){
		var objPct = document.getElementById("pct" + i);
		var objSpc = document.getElementById("spc" + i);
		objSpc.width=objPct.width;
		objSpc.height=objPct.height;
		i++;
	}
}

function setPictureKakudai(){

	var objPct;
	var objSpc;
	if(document.getElementById("pct_l")){
		var objPct = document.getElementById("pct_l");
		var objSpc = document.getElementById("spc_l");
		objSpc.width=objPct.width;
		objSpc.height=objPct.height;
	}
}

//物件詳細/印刷用 外観・間取り
function setPictureLR(){

	var i = 0;
	while(document.getElementById("pct_l" + i)){
		var objPctL = document.getElementById("pct_l" + i);
		var objSpcL = document.getElementById("spc_l" + i);
		objSpcL.width=objPctL.width + 1;
		objSpcL.height=objPctL.height;
		i++;
	}

	i = 0;
	while(document.getElementById("pct_r" + i)){
		var objPctR = document.getElementById("pct_r" + i);
		var objSpcR = document.getElementById("spc_r" + i);
		objSpcR.width=objPctR.width + 1;
		objSpcR.height=objPctR.height;
		i++;
	}
}


