function onload_functions(){
    document.getElementById("txt1").focus()
}

function contact_focus() {
    document.getElementById("Name").focus()
}

function email_focus() {
    document.getElementById("txtEmail").focus()
}

function changeTextbox() {
    txt1.value = 'hello world';
    frmForm.submit;
}

var map = null;
var geocoder = null;
function initialize() {
    if (GBrowserIsCompatible()) {
        map = new GMap2(document.getElementById("map_canvas"));
        geocoder = new GClientGeocoder();
        map.setUIToDefault();
    }
}
function showAddress(address, name) {
    if (geocoder) {
        geocoder.getLatLng(
          address,
          function(point) {
              if (!point) {
              } else {
                  map.setCenter(point, 15);
                  var marker = new GMarker(point);
                  map.addOverlay(marker);
                  marker.openInfoWindowHtml("<b>" + name + "</b>");
              }
          }
        );
    }
}

function popUp() {

    window.open("./paypalitems.aspx","items", "menubar=1,resizable=1,width=350,height=250");
    

}