function startUp() {

	startUp070103();
	startUp070813();

}

function getElementByIdEx( id ){
	var obj = null;
	if( document.getElementById ){
		obj = document.getElementById(id);
	}else if( document.all ){
		obj = document.all[ id ];
	}
	return obj;
}

onload   = startUp;
onunload = GUnload;

