/* popup.js v.1.40
 * last modified: 2007-10-10 JST
 */

function popup(ref,w,h) {
	var winspec = 'width=' + w + ',height=' + h + ',scrollbars=yes' ;
	w = window.open(ref,'ad',winspec);
	w.focus() ;
	return false;
}

function popupshop(ref) {
	var winspec = 'width=640,height=480,scrollbars=yes,resizable=yes,toolbar=yes' ;
	w = window.open(ref,'WelfareMagazineWebStore',winspec);
	w.focus() ;
	return false;
}

// EOF
