
	function asetaTeksti(otus,arvo){
	    if(IEselain){
	        otus.innerText=arvo;
	    }else{
	        otus.textContent=arvo;
	    }//end if
	}//end if


    function teeAjaxKutsu(ajaxFile,parametrit,handleFile){
    	if (xmlhttp!=null && xmlhttp.readyState !=0 && xmlhttp.readyState !=4) {

    	}else{
    	    xmlhttp.open("POST", ajaxFile, true);

    	    xmlhttp.onreadystatechange = handleFile;
            xmlhttp.setRequestHeader("Content-type", "application/x-www-form-urlencoded");
            xmlhttp.send(parametrit);
     	} //end if
    }//end function



