function MM_openBrWindow(theURL,winName,features) { //v1.2
  window.open(theURL,winName,features);
}


//if (!document.getElementById) {

//    window.location = 
//	   "http://www.mokoma.com/paivita.html"

//}




function buildImages( kuvat ){
	for( var i=0; i<kuvat.length; i++ ){
		if( kuvat[i+2] == 1 ) document.writeln('<a href="javascript:showImage(\''+kuvat[i]+'\',\''+kuvat[(i+1)]+'\',\'1\');"><img src="images/'+ kuvat[i] +'" width="100" height="75" vspace="2" alt="'+kuvat[(i+1)]+'" border="0"></a>');
		else document.writeln('<a href="javascript:showImage(\''+kuvat[i]+'\',\''+kuvat[(i+1)]+'\',\'0\');"><img src="images/'+ kuvat[i] +'" width="100" height="75" vspace="2" alt="'+kuvat[(i+1)]+'" border="0"></a>');
		i = i+2;
	}
}
function showImage( iFile, iText, iMode ){	
	if( iMode == 1 ) w = window.open('','ikkuna','scrollbars=no,width=550,height=720');
	else w = window.open('','ikkuna','scrollbars=no,width=720,height=550');
	w.document.write('<html><head><link rel="stylesheet" href="_common/tyylit_tekstipopup.css" type="text/css"></head><body>');
	w.document.write('<img src=images/'+ iFile +'><br clear="left">');
	w.document.write(iText);
	w.document.write('</body></html>');
	w.document.close();
}





