function openPopUpWindow(targetURL) {
	windowName = 'PopUpWindow';
	windowFeatures = 'scrollbars=yes,toolbar=yes,location=no,resizable=yes,width=700,height=600';
	URLtoOpen = "http://www.otokotohiroba.com/menu/"+targetURL+".html";
	newWindow=window.open(URLtoOpen, windowName, windowFeatures);
	}

function openPopUpNewsWindow(targetURL) {
	windowName = 'PopUpWindow';
	windowFeatures = 'scrollbars=yes,toolbar=yes,location=no,resizable=yes,width=700,height=600';
	newWindow=window.open(targetURL, windowName, windowFeatures);
	}

function openHelpWindow(targetURL) {
	windowName = 'HowtoWindow';
	windowFeatures = 'scrollbars=yes,toolbar=yes,location=no,resizable=yes,width=552,height=434';
	URLtoOpen = "help.html";
	newWindow=window.open(URLtoOpen, windowName, windowFeatures);
	}

function openDownloadHelpWindow(targetURL) {
	windowName = 'DownloadHelpWindow';
	windowFeatures = 'scrollbars=yes,toolbar=yes,location=no,resizable=yes,width=552,height=434';
	URLtoOpen = "help_download.html";
	newWindow=window.open(URLtoOpen, windowName, windowFeatures);
	}

function openFormWindow(targetURL) {
	windowName = 'DownloadHelpWindow';
	windowFeatures = 'scrollbars=yes,toolbar=yes,location=no,resizable=yes,width=552,height=600';
	newWindow=window.open(targetURL, windowName, windowFeatures);
	}