<!--
var theParameter = new Array(8)

theParameter[0] = "temp"
theParameter[1] = "wind"
theParameter[2] = "rain"
theParameter[3] = "snow"
theParameter[4] = "cloud"
theParameter[5] = "fog"
theParameter[6] = "msl"
theParameter[7] = "dust"

var theForday = new Array(12)

theForday[0] = "012"
theForday[1] = "018"
theForday[2] = "024"
theForday[3] = "030"
theForday[4] = "036"
theForday[5] = "042"
theForday[6] = "048"
theForday[7] = "054"
theForday[8] = "060"
theForday[9] = "066"
theForday[10] = "072"
theForday[11] = "000"

function directToURL() {
    var getParameter = document.gpForm.parameterSelect.options[document.gpForm.parameterSelect.selectedIndex].value
    var getForday = document.gpForm.fordaySelect.options[document.gpForm.fordaySelect.selectedIndex].value

    for (var i = 0; i < theParameter.length; i++) {
        if (theParameter[i] == getParameter) {
                break
                }
        }
        for (var x = 0; x < theForday.length; x++) {
        if (theForday[x] == getForday) {
                break
                }
        }

var dest = "http://www.poseidon.ncmr.gr/meteo/" + theParameter[i] + "/" + theForday[x]+".gif";
// var dest = "http://www.poseidon.ncmr.gr/pegasus/meteo/" + theParameter[i] + "/" + theForday[x]+".gif";

    if (dest != '')
        if (document.images)
            document.images['myImage'].src = dest;

}

//-->
