function set_rcs_size(id, height) {
	if(document.getElementById('contact_form_' + id) && !isNaN(height) && height > 0) {
		var iFrame = document.getElementById('contact_form_' + id);
		iFrame.style.height = height + 'px';
		iFrame.removeAttribute('id');
	}
}
