function SwitchItem(Name,Type){
Type = Type.toLowerCase()
Name = Name.toLowerCase()
if (Type == "kam" || Type == "won" || Type == "vil") {
	window.parent.MAINFRAME.location.href = Name + "/" + Type + ".htm";
	window.parent.AUXFRAME.location.href = Name + "/" + Type + "_list.htm";
}
else {
	window.parent.HEADER.location.href = Name + "/header.htm";
	window.parent.MAINFRAME.location.href = Name + "/body.htm";
	window.parent.AUXFRAME.location.href = "animation/slideshow.htm";
}
return
}