if(document.images) {
 var imgs = new Array();
 imgs[0] = new Image();  imgs[0].src = "common/image/b_home_1.gif"; // A
 imgs[1] = new Image();  imgs[1].src = "common/image/b_home_2.gif"; // A
 imgs[2] = new Image();  imgs[2].src = "common/image/b_ansi_1.gif"; // A
 imgs[3] = new Image();  imgs[3].src = "common/image/b_ansi_2.gif"; // A
 imgs[4] = new Image();  imgs[4].src = "common/image/b_syur_1.gif"; // A
 imgs[5] = new Image();  imgs[5].src = "common/image/b_syur_2.gif"; // A
 imgs[6] = new Image();  imgs[6].src = "common/image/b_pres_1.gif"; // A
 imgs[7] = new Image();  imgs[7].src = "common/image/b_pres_2.gif"; // A
 imgs[8] = new Image();  imgs[8].src = "common/image/b_anke_1.gif"; // A
 imgs[9] = new Image();  imgs[9].src = "common/image/b_anke_2.gif"; // A
 imgs[10] = new Image();  imgs[10].src = "common/image/b_refo_1.gif"; // A
 imgs[11] = new Image();  imgs[11].src = "common/image/b_refo_2.gif"; // A
 imgs[12] = new Image();  imgs[12].src = "common/image/b_prof_1.gif"; // A
 imgs[13] = new Image();  imgs[13].src = "common/image/b_prof_2.gif"; // A
 imgs[14] = new Image();  imgs[14].src = "common/image/b_mail_1.gif"; // A
 imgs[15] = new Image();  imgs[15].src = "common/image/b_mail_2.gif"; // A
}



function chgimg(id, imgname) {
	if(document.images) {
		if(imgs[imgname]) 
			{ document.images[id].src = imgs[imgname].src; }
	}
}


function wOpen1(URL,name,W,H){
    WO1 = 
window.open(URL,name,'toolbar=no,menubar=no,status=no,resizable=yes,scrollbars=yes,directories=no,location=no,width='+W+',height='+H);
WO1.window.focus();
}