//Preload 
preImages = new Array("../images/button_home-on.gif","../images/button_news-on.gif","../images/button_business-on.gif","../images/button_corpinfo-on.gif","../images/button_recruit-on.gif","../images/button_recruit_idx-on.gif","../images/button_requirement-on.gif","../images/button_application-on.gif","../images/button_voice-on.gif","../images/button_club-on.gif","../images/button_privacy-on.gif","../images/button_contact.gif","../images/graphic_voice_bn01-on.gif","../images/graphic_voice_bn02-on.gif","../images/graphic_voice_bn03-on.gif","../images/graphic_voice_bn04-on.gif","../images/graphic_voice_bn05-on.gif","../images/graphic_voice_bn06-on.gif","../images/graphic_voice_bn07-on.gif","../images/graphic_voice_backlist-on.gif");
preload   = new Array();
for (i=0; i<preImages.length; i++) {
	preload[i] = new Image();
	preload[i].src = preImages[i];
}
//Rollover
function imgRollover(imgName){
	if(document.images){
		document.getElementById(imgName).src = "../images/" + imgName + "-on.gif";
	}
}
//RollOut
function imgRollout(imgName){
	if(document.images){
		document.getElementById(imgName).src = "../images/" + imgName + ".gif";
	}
}
//PopupWindow
function pop001Win(){
	subWin = window.open("license.html","pop001","width=500,height=700,top=0,left=0,scrollbars=yes,resizable=no,toolbar=no");
}