// JavaScript Document
function GetObjectByID(ID) {
	// IE, FIrefox, opera
	if (document.getElementById) {
		// unfortunatly some browsers seem to think that a form element is not an element (firefox)
		if (document.getElementById(ID)==null) {
			return eval("document.forms[0]." + ID);
		} else {
			return document.getElementById(ID);
		}

	//Netscape
	} else {

		return window[ID];
		
	} 
		
//}
}