// JavaScript Document
function SetFocus(){
	if(document.getElementById('set_focus_to')){
		var field = document.getElementById('set_focus_to').value
		if(field){	
			eval("document.getElementById('" + field +"').focus()")
			return
		}
	}
}

window.onload = SetFocus;