<!-- 

function winOpen(tiedosto,ikkunannimi,leveys,korkeus)


{
// 0 = pois paalta
// 1 = paalla 


// YLAPAINIKKEET ("TOOLBAR")
tool = 0; 


// LOCATION-RIVI
loc = 0; 


// RULLAUSJANAT
scro = 0; 


// NAVIGATORIN IKKUNAN VALIKOT
dir = 0; 


// STATUS-RIVI
sta = 0; 


// VALIKOT
men = 0; 


// IKKUNAN KOON MUUTTAMINEN
res = 0; 


specs = '\"toolbar=' + tool + ',location=' + loc + ',scrolling=' + scro +
',directories=' + dir + ',status=' + sta + ',menubar=' + men + ',scrollbars=' +
scro + ',resizable=' + res + ',copyhistory=0,width=' + leveys + ',height=' +
korkeus + '\"';


winstring = ikkunannimi + ' = window.open(\"' + tiedosto + '\",\"' + ikkunannimi
+ '\",' + specs + ')\;';
eval(winstring);
} 


// -->