function botrap() {
	if(document.getElementById) {
		var rn1 = document.getElementById("rn1");
		var rn2 = document.getElementById("rn2");
		var botrap = document.getElementById("botrap");
		var botnotif = document.getElementById("botnotif");
				
		rn1.setAttribute("value",rn2.getAttribute("value"));
		
		botrap.setAttribute("style","display: none;");
		botrap.className = "secondary";
		
		botnotif.parentNode.removeChild(botnotif);
	}
}
window.onload = botrap;
