// ----------------------------------

function launchWin(URL){
	features = 'toolbar=no,locationbar=no,resizable=yes,scrollbars=yes,width=720,height=666';
	newWin = window.open(URL,'Latta',features);
	newWin.focus();
}

// ----------------------------------

function launchWin_resize(URL,w,h){
	features = 'toolbar=no,locationbar=no,resizable=yes,scrollbars=yes,width='+w+',height='+h;
	newWin = window.open(URL,'Latta',features);
	newWin.focus();
}

// ----------------------------------
function linkToParent(URL) {
	if (window.opener == "[object]" ) {
		if(!window.opener.closed){
			window.opener.focus();
			window.opener.location.href = URL; 
			//window.close();
			return;
		} else {
			location.href=URL; 
			return;
		}
	} else if(window.opener) {
		window.opener.focus();
		window.opener.location.href = URL; 
		//window.close();
		return;
	} 
	location.href=URL; 
}

// ----------------------------------
//include text


function textlink(){
document.write('［ <a href="http://www.info.shogakukan.co.jp/privacy/index.html" target="_blank">小学館のプライバシーステートメント</a> ］<br>');
}


function copyright(){
document.write('Copyright (C) 2009, SHOGAKUKAN. All rights reserved. <br>');
document.write('No reproduction or republication without written permission.<br>');
document.write('掲載の記事・写真・イラスト等のすべてのコンテンツの無断複写・転載を禁じます。<br>');
}

function inq(){
document.write('<a href="mailto:info@youjitohoiku.com">お問い合わせやご意見等はこちらから</a>');
}


