function winOpen(Aurl,Aname,Awidth,Aheight,Atoolbar,Alocation,Astatus,Ascroll,Amenu,Aresize){
 Astr = "width=" + Awidth;
 Astr+= ",height=" + Aheight;
 if(Atoolbar)Astr+= ",toolbar";
 if(Alocation)Astr+= ",location";
 if(Astatus)Astr+= ",status";
 if(Ascroll)Astr+= ",scrollbars";
 if(Amenu)Astr+= ",menubar";
 if(Aresize)Astr+= ",resizable";
 window.open(Aurl,Aname,Astr);
}

function winClose() {
window.close();
}

function imgRollover() {
	if(document.getElementsByTagName) {
		var images = document.getElementsByTagName("img");

		for(var i=0; i < images.length; i++) {
			if(images[i].getAttribute("src").match("_d."))
			{
				images[i].onmouseover = function() {
					this.setAttribute("src", this.getAttribute("src").replace("_d.", "_h."));
				}
				images[i].onmouseout = function() {
					this.setAttribute("src", this.getAttribute("src").replace("_h.", "_d."));
				}
			}
		}
	}
}

if(window.addEventListener) {
	window.addEventListener("load", imgRollover, false);
}
else if(window.attachEvent) {
	window.attachEvent("onload", imgRollover);
}

//°ÊÁ°¤Îcommon.js
function RollOver (obj,val) {
  obj.src = val;
}

function MM_jumpMenu(targ,selObj,restore){
  eval(targ+".location='"+selObj.options[selObj.selectedIndex].value+"'");
  if (restore) selObj.selectedIndex=0;
}

function historyback()
{
	history.back();
	return false;
}
