/*用語解説小窓を開く */
function getUrl( url ){
		var name = "dict";
		dictWindow=window.open( url , name , "width=450,height=450,scrollbars=yes,status=no,resizable=yes");
	}

function closeWin() {
window.close();
}


/* ..小窓から新しいウィンドウを作る. */
function changeURL( url ) {
	cURL=window.open( url, "_blank","location=yes,menubar=yes,status=yes,toolbar=yes");
}



/* 外部URLへの移動 */
function goOut(url){

if (window.confirm(url+' のページを開きます')){

window.open( url, "_blank","location=yes,menubar=yes,status=yes,toolbar=yes") }	 
}
