gizgo_weather();

function gizgo_weather() {
    var w = window;
    var h = w.location.href;

    w.gizgo_weather_url        = 'http://www.gizgo.net/weather/';

    if (w.gizgo_weather_site) {
        w.gizgo_weather_url   += escape(w.gizgo_weather_site) + "/";
    } else {
        w.gizgo_weather_url   += "0/";
    }
    
    if (w.gizgo_weather_location)
        w.gizgo_weather_url   += escape(w.gizgo_weather_location);

    w.gizgo_weather_width  = 470;
    w.gizgo_weather_height = 437;
    
    document.write('<ifra' + 'me name="gizgo_weather" ' +
                                'width="' + w.gizgo_weather_width + '" ' +
                                'height="' + w.gizgo_weather_height + '" ' +
                                'frameborder="0" ' +
                                'src="' + w.gizgo_weather_url + '" ' +
                                'marginheight="0" ' +
                                'marginwidth="0" ' +
                                'vspace="0" ' +
                                'vheight="0" ' +
                                'allowtransparency="true" ' +
                                'scrolling="no">');
    document.write('no iframe support');
    document.write('</ifra' + 'me>');
}

