var win = null;
function NewWindow(winname, w, h, link, title){
settings = 'height=' + h + ',innerHeight=' + h + ',width=' + w + ',innerWidth=' + w + ',screenX=100,left=100,screenY=100,top=100,scrollbars=no,resizable=yes,menubar=no,toolbar=no';
win = window.open("", winname, settings);
win.focus();
win.document.open();
win.document.write('<html><head><title>' + title + '<\/title><\/head><body><div align="center"><img src=' + link + '><\/div><form><div align="center"><input type="button" name="B1" value="Sulje ikkuna" align="center" onclick="window.close()"><\/div><\/form><\/body><\/html>');
win.document.close();

}
function chgImg(name, fig)
{
    if (document.images)
    {
        document[name].src = eval(fig+".src");
    }
}

  
function chgText(tex, status)
{
if (document.all||document.getElementById)
{  
	if (status == 1)
	{
      tex.style.color='#999999';
		//tex.style.backgroundColor='black';	  
	  //tex.style.fontWeight='700';
	  //tex.style.fontStyle='italic'
	} 
	if (status == 0)
	{
      tex.style.color='#333333';
		//tex.style.backgroundColor='pink';
	  //tex.style.fontWeight='normal'
	  //tex.style.fontStyle='normal'
	}
}
}