/* topbar select */

function jump(){
	n = document.quick.url.selectedIndex;
	if (n == 0){return;}
	else {
		v = document.quick.url.options[n].value;
		top.location.href = v;
	}
}

function change_img(n, i, off, on){
	if (n==0){document.images[i].src = off;}
	else {document.images[i].src = on;}

}

function jump_outside (u) {
	var url = u;
//	var url = 'http://local-websunday/';

	if (confirm ('この先は小学館が運営するものではありません。')) {
		window.open(url,'_blank','menubar=yes,toolbar=yes,status=yes,directories=yes,location=yes');
	}
}

/* WINDOW OPEN */

function windopen(p, n, w, h) {
	window.open(
		p,
		n,
		'width=' + w + ', height=' + h + ', toolbar=0, menuber=0, scrollbars=0, status=0, resizable=0, top=0, left=0'
	);
}

