function verify(msg){
    return confirm(msg);
    }

function insertExternalLink(field)
{
var link = '<a href="http://www.OtherWebsite.com" rel="popup">LINK TEXT HERE</a>';
theInput = document.getElementById(field);
theInput.value = field;
}
