function tulosta() {
	if (!window.print){
		alert("Käyttämäsi selain ei tue tätä toimintoa. Käytä selaimen omaa tulostusta.")
		return
	}
	window.print()
}


function open_window_with_parameters(sUrl, sName, iWidth, iHeight, sStyleProperties) {
	var sProperties;
	sProperties = sStyleProperties + ",width=" + iWidth + ",height=" + iHeight;
	window.open(sUrl, sName, sProperties);
}
