function gotourl(url) {
    document.location.href=url;
}

//function editMessage() {
//    var item = document.getElementById('infoMessage');
//    var itemText = item.innerHTML;
//    
//    while (item.hasChildNodes()) {
//    item.removeChild(item.childNodes[0]);
//    }
//    
//    var msgForm = document.createElement('form');
//    msgForm.setAttribute('method', 'post');
//    
//    var msgText = document.createElement('textarea');
//    msgText.setAttribute('cols', '27');
//    msgText.setAttribute('rows', '3');
//    msgText.setAttribute('name', 'message');
//    msgText.appendChild(document.createTextNode(itemText));
//    
//    var msgBtn = document.createElement('input');
//    msgBtn.setAttribute('type', 'submit');
//    msgBtn.setAttribute('value', 'OPDATER');
//    msgBtn.className = 'actionButton';
//    
//    msgForm.appendChild(msgText);
//    msgForm.appendChild(msgBtn);
//    
//    item.appendChild(msgForm);
//    
//    }

