﻿

function relocateUC(){
    var uc = document.getElementById("ucContents");
    var body = document.getElementById("ucContentBody");
    if (uc != null && body != null) {
	    var ucHtml = uc.innerHTML;
	    uc.innerHTML = "";
	    body.innerHTML = ucHtml;
    }
}


