function smartRollover() {
	if(document.getElementsByTagName) {
		var images = document.getElementsByTagName("img");

		for(var i=0; i < images.length; i++) {
			if(images[i].getAttribute("src").match("_off."))
			{
				images[i].onmouseover = function() {
					this.setAttribute("src", this.getAttribute("src").replace("_off.", "_on."));
				}
				images[i].onmouseout = function() {
					this.setAttribute("src", this.getAttribute("src").replace("_on.", "_off."));
				}
			}
		}
	}
}

if(window.addEventListener) {
	window.addEventListener("load", smartRollover, false);
}
else if(window.attachEvent) {
	window.attachEvent("onload", smartRollover);
}

//外部リンク
function externalLinks() {   
if (!document.getElementsByTagName) return;   
var anchors = document.getElementsByTagName("a");   
for (var i=0; i<anchors.length; i++) {   
var anchor = anchors[i];   
if (anchor.getAttribute("href") &&   
anchor.getAttribute("rel") == "external")   
//anchor.name = "new_w";
anchor.target = "_blank";   
}   
}   
window.onload=externalLinks;  

//別ウィンドウ開く
function m_win(url,windowname,width,height) {
 var features="location=no, menubar=no, status=no, scrollbars=no, resizable=no, toolbar=no, directories=no";
 if (width) {
  if (window.screen.width > width)
   features+=", left="+(window.screen.width-width)/2;
  else width=window.screen.width;
  features+=", width="+width;
 }
 if (height) {
  if (window.screen.height > height)
   features+=", top="+(window.screen.height-height)/2;
  else height=window.screen.height;
  features+=", height="+height;
 }
 window.open(url,windowname,features);
}
