function addEvent(obj, evType, fn, useCapture){
  if (obj.addEventListener){
    obj.addEventListener(evType, fn, useCapture);
    return true;
  } else if (obj.attachEvent){
    var r = obj.attachEvent("on"+evType, fn);
    return r;
  } else {
    alert("Handler could not be attached");
  }
}

function ConfirmDelete(objName)
{
	return confirm('Are you sure you want to remove this ' + objName + '? It will be permanently deleted.');
}

function changeContent()
{
  document.getElementById('careercontent').innerHTML="<h1 class='header'><span class='section-head'>Career Opportunities   </span></h1><iframe frameborder='0' scrolling='auto' width='515px' height='550px' src='http://www.healthcaresource.com/pella' id='testiframe' name='testiframe'></iframe>";
}