// DWG ダウンロード向けダイアログ
// 

function DwgDialog(vBase, vExt, vTitle) {
	var base = encodeURI(vBase);
	var ext = encodeURI(vExt);
	var title = encodeURI(vTitle);
	var url = '/dwgdownload.php?base=' + base + '&ext=' + ext + '&title=' + title;

	window.open(url, 'dwgdownload', 'width=400, height=400, menubar=no, toolbar=no');
}


