
//**********************************************************************
//initial setting**************************************************************
//**********************************************************************
//preloadImage
function preloadImage(){
	var preimage = new Array();
	for(i = 0 ; i < preloadImageList.length ; i++) {
		preimage[i] = new Image();
		preimage[i].src = preloadImageList[i];
	}
}
//lib_changeImage
function changeImage(imageName,imageSrc){
	if(document.all){document.all[imageName].src=imageSrc;}
	if(document.layers){document.images[imageName].src=imageSrc;}
	if(document.getElementById){document.images[imageName].src=imageSrc;}
}
//lib_changeImageLayer
function changeImageLayer(layerName,imageName,imageSrc){
	if(document.all){document.all[imageName].src=imageSrc;}
	if(document.layers){document.layers[layerName].document.images[imageName].src=imageSrc;}
}
//lib_jumpFunc00
function jumpFunc00(parts){
	jump = parts.options[parts.selectedIndex].value;
	if (jump != "") {
		location.href = jump;
	}
}
//lib_jumpFunc01
function jumpFunc01(parts){
	jump = parts.options[parts.selectedIndex].value;
	if (jump != "") {
		top.location.href = jump;
	}
}
//openBrWindow
function openBrWindow(url,winName,features) {
	window.open(url,winName,features);
}
onload=window.top.name="search_trg";
