function WhoAmI() {	
	var theOptions = document.forms[0].someselect.options;
	var me;
	for (i=0; i<theOptions.length; i++) {
		if (theOptions[i].value.match(document.title)) {
			me = i;
		}
	}
	if (me) {
		theOptions[me].selected = true;
	}
}



function GoTo(where) {
	if (where) {
		if (! where.match(document.title )) {
			document.location.href=where;
		}
		else {
			alert ("Usted ya está en la página escogida.")
		}
	}
}
