//画像のロールオーバー

function SwapImg(name,url) {
	document.images[name].src=url;
	}



function displayParentWindow(htmlname,width,height){
	if(!window.opener || window.opener.closed){ // メインウィンドウの存在をチェック
		window.open(htmlname , 'new', 'width=' + width + ',height=' + height + ',menubar=yes,toolbar=no,status=yes,scrollbars=yes,resizable=yes'); // 存在しない場合は新規にwindowを開く
	}else{
		child = window.opener.open(htmlname , '_parent', 'width=' + width + ',height=' + height + ',menubar=yes,toolbar=no,status=yes,scrollbars=yes,resizable=yes'); // 存在する場合はページを切りかえる
		child.focus(); 
	}
}

function changePicture(myPicURL,myImgTagName){
        document.images[myImgTagName].src = myPicURL;
}

