<!--
var tovar = new Array(4)
// Velux
tovar[1]= new Array(
"55x78",
"66x118",
"78x98",
"78x118",
"78x140",
"78x160",
"94x140",
"114x118",
"114x140"
)

// Fakro
tovar[2]=new Array(
"55x78",
"55x98",
"66x98",
"66x118",
"78x98",
"78x118",
"78x140",
"78x160",
"94x118",
"94x140",
"114x118",
"114x140",
"134x98"
)

// OKKO
tovar[3]=new Array(
"55x78",
"55x98",
"64x98",
"64x118",
"78x98",
"78x118",
"78x140",
"78x160",
"94x118",
"94x140",
"114x118"
)

// OMAN
tovar[4]=new Array(
"55x78",
"55x98",
"64x98",
"64x118",
"78x98",
"78x118",
"78x140",
"78x160",
"94x118",
"94x140",
"114x118"
)

// ROTO
tovar[5]=new Array(
"54x78",
"54x98",
"65x118",
"65x140",
"74x98",
"74x118",
"74x140",
"74x160",
"94x98",
"94x118",
"94x140",
"94x160",
"114x118",
"114x140",
"134x140"
)
function update_size()
{
n=document.form_top_okna.firma.selectedIndex + 1;
document.form_top_okna.size.length=tovar[n].length;
for(i=0; i<tovar[n].length; i++) document.form_top_okna.size[i].text = tovar[n][i];
}
//-->