function FillFormFields(v,form) {
if(v.length < 5) { return; }
var levelOne = v.split('~ ~');
for(var i = 0; i < levelOne.length; i++) {
	var levelTwo = levelOne[i].split('| |');
//	eval('document.WEBPAGEFORM.' + levelTwo[0] + '.value = "' + levelTwo[1] + '"');
	eval('document.' + 'search' + '.' + levelTwo[0] + '.value = levelTwo[1]');
	}
}

function MM_goToURL() { //v3.0
  var i, args=MM_goToURL.arguments; document.MM_returnValue = false;
  for (i=0; i<(args.length-1); i+=2) eval(args[i]+".location='"+args[i+1]+"'");
}
function map_open(city) {
	newwindow=window.open('includes/maps/'+ city +'/map.php?city='+document.search.city.value,'map', 'height=457, width=532, menubar=no, status=no, toolbar=no, scrollbars=no, resizable=no');
	if (window.focus) {newwindow.focus()}
	return false;
}
