// JavaScript Document

var nSizeWidth;		//幅
var nSizeHeight;	//高さ
var nWinWidth;		//Windowの幅
var nWinHeight;		//Windowの高さ

function openDetailMapWindow(code){
	
	nSizeWidth = 0;
	nSizeHeight = 0;
	//スクリーンサイズを取得
	nSizeWidth = screen.width;
	nSizeHeight = screen.height;
	//Windowサイズを指定
	nWinWidth = 670;
	nWinHeight = 895;
	//ポップアップウィンドウの表示位置
	nPopLeft = ((nSizeWidth-nWinWidth)/2);
	nPopTop = ((nSizeHeight-nWinHeight)/2);

	var mapurl = 'http://sp.chizumaru.com/dbh/lexus/detailmap.aspx?account=lexus&accmd=0&bid=' + code ;
	
	subWin = window.open(mapurl, "DetailMap", 
		"width="+nWinWidth+",height="+nWinHeight+",left="+nPopLeft+",top="+nPopTop+"");
}

function openMapWindow(url){
	
	nSizeWidth = 0;
	nSizeHeight = 0;
	//スクリーンサイズを取得
	nSizeWidth = screen.width;
	nSizeHeight = screen.height;
	//Windowサイズを指定
	nWinWidth = 520;
	nWinHeight = 460;
	//ポップアップウィンドウの表示位置
	nPopLeft = ((nSizeWidth-nWinWidth)/2);
	nPopTop = ((nSizeHeight-nWinHeight)/2);
	
	subWin = window.open(url, "Map", "width="+nWinWidth+",height="+nWinHeight+",left="+nPopLeft+",top="+nPopTop+"");
	
}
