function preloadImage(){
	var preimage = new Array();
	for(i = 0 ; i < preloadImageList.length ; i++) {
		preimage[i] = new Image();
		preimage[i].src = preloadImageList[i];
	}
}

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;}
}

function changeImageLayer(layerName,imageName,imageSrc){
	if(document.all){document.all[imageName].src=imageSrc;}
	if(document.layers){document.layers[layerName].document.images[imageName].src=imageSrc;}
}

function jumpFunc00(parts){
	jump = parts.options[parts.selectedIndex].value;
	if (jump != "") {
		location.href = jump;
	}
}

function jumpFunc01(parts){
	jump = parts.options[parts.selectedIndex].value;
	if (jump != "") {
		top.location.href = jump;
	}
}
onload=window.top.name="search_trg";