function chPic(img_src,img_id){
	pic = document.getElementById(img_id);
	pic.src = img_src;
}
function chCont(text, target){
	t_div = document.getElementById(target);
	t_div.innerHTML = text;
}