function unv(imgname) {
	if (navigator.appVersion > "3") {
		imgnum = new Image();
		imgpath = document.images[imgname].src;

		if( imgpath.indexOf("_on.gif") >= 0 ){
			imgpath = imgpath.replace("_on.gif", ".gif");
		}else if( imgpath.indexOf("_on.jpg") >= 0 ){
			imgpath = imgpath.replace("_on.jpg", ".jpg");
		}else if( imgpath.indexOf(".gif") >= 0 ){
			imgpath = imgpath.replace(".gif", "_on.gif");
		}else{
			imgpath = imgpath.replace(".jpg", "_on.jpg");
		}

		imgnum.src = imgpath;
		document.images[imgname].src = imgnum.src;
	}
}

function mainph(phnum) {
	for (i=1;i<4;i++){
		if(i!=phnum){
			document.getElementById("mainph_box"+[i]).className = "disof";
		}else{
			document.getElementById("mainph_box"+[i]).className = "dison";
		}
	}
}