﻿//物件カード
function openCard(imgname){
	var nWin = null;
	
	nWin = window.open('itemcard.html','itemcard','toolbar=yes,location=no,directories=yes,status=yes,menubar=yes,scrollbars=yes,resizable=yes,width=730,height=550,titlebar=no');
	
	if(nWin != null){
			var code = '<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"><html><head><meta http-equiv="Content-Type" content="text/html; charset=shift_jis"><style type="text/css">body{font-size:75%;}a{color: #000;}img{border: 1px solid #666;}--></style></head><body><div style="text-align:center"><img src=';
			code += imgname;
			code += ' width="980"></div></body></html>';
			
			nWin.document.write(code);
			nWin.document.close();
			nWin.focus();
	}
}

//GoogleMap
function PopupMap(strPass){
    var strurl;
    strurl = "map.asp?hl=ja&ie=UTF-8&address=";
    strurl = strurl + encodeURI(strPass);
    var pObj;
    pObj = window.open(strurl,"map",'menubar=yes,location=yes, scrollbars=yes,resizable=yes,width=660,height=576');
}
