
//チェンジイメージ
function chgImage(imgname,filename){
	document.images[imgname].src = filename;
	return true;
}


//------------------------------------------------
// OPEN WINDOW
//------------------------------------------------
function popWindow(theURL,winName,features){
	w = open(theURL,winName,features);
	w.focus();
}
