	//--------------------------------------------------------------------------//
	// デジブック　Newウィンドウ表示
	//--------------------------------------------------------------------------//
	
function SubWin_digibook(url){
	w = 1000;
	h = 800;
	e = "toolbar=no,location=no,status=no,menubar=no,scrollbars=no,resizable=yes";

	d = new Date();
	n = d.getMinutes() +"_"+ d.getMilliseconds();
	p = e + ",width=" +w+ ",height=" +h;
	win = window.open(url, n, p);
	win.focus();
}
