 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" /> <meta name="viewport" content="width=468,initial-scale=.72, maximum-scale=1, user-scalable=yes"> <link href="https://fonts.googleapis.com/css?family=Oxygen:400,300" rel='stylesheet' type='text/css'> <link href="https://fonts.googleapis.com/css?family=Oxygen:400,300" rel='stylesheet' type='text/css'> <link rel="stylesheet" type="text/css" href="main.css" /> <script>

function createCookie(name,value,days) {
	if (days) {
		var date = new Date();
		date.setTime(date.getTime()+(days*24*60*60*1000));
		var expires = "; expires="+date.toGMTString();
	}
	else var expires = "";
	document.cookie = name+"="+value+expires+"; path=/";
}

</script> <style type="text/css">
                        #d_clip_button {
                                text-align:center; 
                                border:1px solid black; 
                                background-color:#ccc; 
                                margin:5px; padding:5px;
                                width:30px;
                        }
                        #d_clip_button.hover { background-color:#eee; }
                        #d_clip_button.active { background-color:#aaa; }
                </style> <script type="text/javascript">var switchTo5x=true;</script> <script type="text/javascript" src="https://ws.sharethis.com/button/buttons.js"></script> <script type="text/javascript">stLight.options({publisher: "989a19d0-fbe2-4bbc-9b94-b51dad2934de", doNotHash: false, doNotCopy: false, hashAddressBar: false});</script> <script type="text/javascript" src="https://ws.sharethis.com/button/buttons.js"></script> <script type="text/javascript">stLight.options({publisher: "989a19d0-fbe2-4bbc-9b94-b51dad2934de", doNotHash: false, doNotCopy: false, hashAddressBar: false});</script>  <meta property="og:image" content="http://www.news-line.com/images/articles/A25345.jpg"> <meta property="og:description" content="Nurses from New Jersey, New York, California and Massachusetts made their way to Bay Area Regional Medical Center in the days after impact to relieve staff to get much needed rest and to begin the process of cleanup and rebuilding.

Bay Area Regional employees weathered the storm at the hospital for many days. 

Most slept in the hospital because of massive, widespread flooding. " Some essential staff was rescued by boat and by large vehicles when the flooding first began," said Stephen K. Jones,"> <meta property="og:title" content="Nurses Nationwide Lend A Helping Hand At Bay Area Regional In The Aftermath Of Hurricane Harvey"> <meta property="og:type" content="article">  </head> <body> <script>
//document.write(document.URL);
myURL = document.URL;
if (myURL.indexOf('_enews') > 0){
	//newURL = myURL.replace('_news','_enews');
	//fix for bad enews link
	//window.location = newURL;
}

var thisURL = window.location;
thisURL = thisURL.toString();
var indexOf1 = thisURL.indexOf("%26");
//document.write("thisURL:" +thisURL);
//document.write("<br>indexOf: "+thisURL.indexOf('%26'));
if (thisURL.indexOf("%26") != -1)
{
	window.location = thisURL.replace(/%26/g,"&");
} thisURL
</script>  <div id="wrapper_head">  <script src="/js/hammer.min.js"></script>
<script>
function fadeOut(item,op){
	var element = document.getElementById(item);
	//var op = 1;  // initial opacity
	//var op = element.style.opacity;
	
	//alert('op:'+op);
	
	if (op == 1){
	
		var timer = setInterval(function () {
			if (op <= 0.1){
				clearInterval(timer);
				element.style.display = 'none';
			}
			element.style.opacity = op;
			element.style.filter = 'alpha(opacity=' + op * 100 + ")";
			op -= op * 0.1;
		}, 15);
    
    } else {
    	op = .1;
    	element.style.display = 'block';
    	var timer = setInterval(function () {
			if (op >= 1){
				clearInterval(timer);
			}
			element.style.opacity = op;
			element.style.filter = 'alpha(opacity=' + op * 100 + ")";
			op += op * 0.1;
		}, 15);
    
    }
}

function fixForm(){
	//alert('ok - ' + document.getElementById('userInput').value);
	document.getElementById('userInput').value = document.getElementById('userInput').value.replace('@',' ');
}

function hideItem(item){
	document.getElementById(item).style.display='none';
}

function showItem(item){
	document.getElementById(item).style.display='block';
}

function setCookie(cname, cvalue, exdays) {
    var d = new Date();
    d.setTime(d.getTime() + (exdays*24*60*60*1000));
    var expires = "expires="+d.toUTCString();
    document.cookie = cname + "=" + cvalue + "; " + expires;
}


function toggleSideMenu() {
	if ( document.getElementById('mobile_nav').style.display == 'block' ){
	
	var elem = document.getElementById("mobile_nav"),
 	left = 0,
  	timer;
// Move the element 10px on the right every 16ms
timer = setInterval(function() {
  elem.style.left = ( left -= 20 ) + "px";
  // clear the timer at 600px to stop the animation
  if ( left <= -500 ) {
    clearInterval( timer );
    elem.style.display='none';
  }
}, 10);
	} else {
		document.getElementById('mobile_nav').style.display='block';
		
		var elem = document.getElementById("mobile_nav"),
 	left = -500,
  	timer;
// Move the element 10px on the right every 16ms
timer = setInterval(function() {
  elem.style.left = ( left += 20 ) + "px";
  // clear the timer at 600px to stop the animation
  if ( left >= 0 ) {
    clearInterval( timer );
    //elem.style.display='none';
  }
}, 10);
		
	}
}

function toggleSideLoginMenu() {
	if ( document.getElementById('mobile_login').style.display == 'block' ){
	
	var elem = document.getElementById("mobile_login"),
 	right = 0,
  	timer;
// Move the element 10px on the right every 16ms
timer = setInterval(function() {
  elem.style.right = ( right -= 20 ) + "px";
  // clear the timer at 600px to stop the animation
  if ( right <= -500 ) {
    clearInterval( timer );
    elem.style.display='none';
  }
}, 10);
	} else {
		document.getElementById('mobile_login').style.display='block';
		
		var elem = document.getElementById("mobile_login"),
 	right = -500,
  	timer;
// Move the element 10px on the right every 16ms
timer = setInterval(function() {
  elem.style.right = ( right += 20 ) + "px";
  // clear the timer at 600px to stop the animation
  if ( right >= 0 ) {
    clearInterval( timer );
    //elem.style.display='none';
  }
}, 10);
		
	}
}

</script>


<div style="display:none;width:75%;height:100%;overflow:auto;position:fixed;top:55px;right:-1px;background-color:#0771b4;z-index:999;box-shadow: -5px 0px 5px 0px rgba(0,0,0,0.75);" id="mobile_login">
<br>

<script>

function createCookie(name,value,days) {
	if (days) {
		var date = new Date();
		date.setTime(date.getTime()+(days*24*60*60*1000));
		var expires = "; expires="+date.toGMTString();
	} else {
	var expires = "";
	document.cookie = name+"="+value+expires+"; path=/";
	}

  // Additional JS functions here
  window.fbAsyncInit = function() {
    FB.init({
      appId      : '119801691459615', // App ID
      channelUrl : '//www.news-line.com/my/fb/channel.html', // Channel File
      status     : true, // check login status
      cookie     : true, // enable cookies to allow the server to access the session
      xfbml      : true  // parse XFBML
    });

    FB.getLoginStatus(function(response) {
  if (response.status === 'connected') {
    // connected
  } else if (response.status === 'not_authorized') {
    //login();
  } else {
    //login();
  }
 });

  };

  // Load the SDK Asynchronously
  (function(d){
     var js, id = 'facebook-jssdk', ref = d.getElementsByTagName('script')[0];
     if (d.getElementById(id)) {return;}
     js = d.createElement('script'); js.id = id; js.async = true;
     js.src = "//connect.facebook.net/en_US/all.js";
     ref.parentNode.insertBefore(js, ref);
   }(document));
   
   function login() {
	FB.login(function(response) {
   if (response.authResponse) {
            // connected
            getInfo();
        } else {
            // cancelled
        }
 }, {scope: 'email,user_education_history,user_location,user_work_history'});
}

function getInfo() {
    FB.api('/me', function(response) {
    
    	var fName = response.first_name;
    	var lName = response.last_name;
    	var email = response.email;
    	var edData = JSON.stringify(response.education);
        //var myObj = JSON.parse(edData);            
        var workData = JSON.stringify(response.work);       
        var locData = JSON.stringify(response.location);        
        var updatedTime = response.updated_time;      
        var gender = response.gender;
        var id = response.id;
        
        document.getElementById('fName').value = fName;
        document.getElementById('lName').value = lName;
        document.getElementById('email').value = email;
        document.getElementById('edData').value = edData;
        document.getElementById('workData').value = workData;
        document.getElementById('locData').value = locData;
		document.getElementById('updatedTime').value = updatedTime;
		document.getElementById('gender').value = gender;
		document.getElementById('id').value = id;
                
        document.forms['fbForm'].submit();
    });
}
}


   
</script>


<div id="fb-root"></div>
<form id="fbForm" method="post" action="/my/fb/processFBLogin.lasso">
<input type="hidden" name="fName" id="fName">
<input type="hidden" name="lName" id="lName">
<input type="hidden" name="email" id="email">
<input type="hidden" name="edData" id="edData">
<input type="hidden" name="workData" id="workData">
<input type="hidden" name="locData" id="locData">
<input type="hidden" name="updatedTime" id="updatedTime">
<input type="hidden" name="gender" id="gender">
<input type="hidden" name="id" id="id">
</form>
<form action="action.lasso" method="post">
<input type="Hidden" name="-Database" value="MyNewsline">
<input type="hidden" name="-Layout" value="web2">
<input type="hidden" name="-Response" value="/mylogin.lasso">

<input type="hidden" name="-ResponseAnyError" value="/mylogin.lasso">
<input type="hidden" name="-ResponseReqFieldMissingError" value="/mylogin.lasso">
<div align="center">
</div>
<table border=0 width="100%" id="loginTable"><tr><td>
<span style="display:block;margin:0 auto;">
<a href="#"><img src="/my/fb/signin-facebook.png" onclick="login();" width="80%"></a>
</span>
<hr style="margin:10px;" color="#a6cee3">
<span style="text-align:left;float:left;"><FONT style="color:white"><b>Username:</b></font></span>
<br>
<input type="hidden" value="EW" name="-op">
<input type="hidden" name="-Required">
<input type="text" name="User" id="userInput" class="loginInput">
<br><br>
<span style="text-align:left;float:left;"><FONT style="color:white"><b>Password:</b>
<a href="javascript: openPassWin()" style="color:white;"><FONT SIZE="1"> [Lost?]</font></a></span><br>
<input type="hidden" value="eq" name="-op">
<input type="hidden" name="-Required">
<input type="password" name="Password" id="frmPass" class="loginInput">
</font><Br>
<br>
 <center><span style="">
<input onclick="fixForm();" type="submit" name="-search" value="Login" id="loginSubmit">
</span></center>
</td>
</tr>
<tr>
<td></td></tr>
</table>
<br>
<table border=0 align="right"><td>
<a href="/my/joinpromo.lasso" target="_blank" style="color:white;float:right;" title="join">
<center>New User? Click here for
your FREE subscription</a></center></td></table>
<br><Br>
<script>
					var browser = navigator.userAgent;
					if (browser.indexOf('Firefox') > 0){
						// shrink input boxes in Firefox to maintain intended layout
						//document.getElementById('frmUser').size = 10;
						//document.getElementById('frmPass').size = 10;
					};
				</script>
</font>
</form>
<br>
</div>
<div style="display:none;width:75%;height:100%;overflow:auto;position:fixed;top:55px;left:-500px;background-color:#0771b4;z-index:999;box-shadow: 5px 0px 5px 0px rgba(0,0,0,0.75);" id="mobile_nav">
<a href="/NL_news">Latest&nbsp;News</a>
<a href="/NL_jobs">Job&nbsp;Board</a>
<a href="/NL_calendar">Conferences&nbsp;&&nbsp;Education</a>
<a href="/my/join.lasso">Post&nbsp;Your&nbsp;Resume</a>
<a href="/enews.lasso?mode=view&-token.profession=NL">eNews</a>
<a href="/NL_issues">Magazines</a>
<br><br>
<span style="position:absolute;bottom:100px;>
			<font color=" white"><a href="/mobile_help.lasso">Mobile Site Help</a><br></font>
<span id="profSwitch" style="margin-left:20px;">
<font color="white">
<b>Switch Profession:</b><br>
<select name="select-professions" style="font-size:25px;width:90%" onchange="navSelect(this);">
<option value="/NL_home" selected>Healthcare Providers</option>
<option value="/PH_home">Pharmacists</option>
<option value="/PA_home">Physician Assistants</option>
<option value="/PN_home">Nurse Practitioners</option>
<option value="/PT_home">PTs/PTAs</option>
<option value="/PX_home">Radiology</option>
<option value="/NS_home">Nurses</option>
<option value="/PO_home">OTs/COTAs</option>
<option value="/PR_home">Respiratory</option>
<option value="/PS_home">SLPs</option>
<option value="/PL_home">Laboratory Professionals</option>
<option value="/SA_home">Acute/Ambulatory Care</option>
<option value="/SC_home">Cardio/Pulmonary Rehab</option>
<option value="/SU_home">ER/Urgent Care</option>
<option value="/SF_home">Family/General Medicine</option>
<option value="/SH_home">Home Care</option>
<option value="/SL_home">Long Term Care</option>
<option value="/SY_home">Mental Health</option>
<option value="/SO_home">Ortho/Rehabilitation</option>
<option value="/SP_home">Pediatric Care</option>
<option value="/SS_home">School/Community Health</option>
<option value="/SW_home">Women's Health</option>
<option value="/SE_home">en Espa&ntilde;ol</option>
</select></font>
</span>
</span>
</div>
<div id="topBar1">
<a href="" onclick="toggleSideMenu();return false;">
<span id="burgerMenuMobile">
<img style="" id="hamburgerMenuIcon" src="/images/hamburger.png" height="32" border=0>
</span>
</a>
<span id="loginLink" style="position:absolute;width:100%">
<a id="loginLinkA" style="float:right;color:#fff;margin-top:5px;margin-right:5px;" href="#" onclick="toggleLoginWindow();return false;">
<span id="loginLinkDesktop" style="vertical-align:middle;">
Login / Register
</span>
</a>
<A href="#" onclick="toggleSideLoginMenu();return false;"><span id="loginLinkMobile"><img src="/images/usericon.png" vspace=15 height="32" style="padding-right:10px;padding-left:5px;padding-top:10px;padding-bottom:0px;border:none;"></span>
</a>
</span>
<span id="loginSpan">

<script>

function createCookie(name,value,days) {
	if (days) {
		var date = new Date();
		date.setTime(date.getTime()+(days*24*60*60*1000));
		var expires = "; expires="+date.toGMTString();
	} else {
	var expires = "";
	document.cookie = name+"="+value+expires+"; path=/";
	}

  // Additional JS functions here
  window.fbAsyncInit = function() {
    FB.init({
      appId      : '119801691459615', // App ID
      channelUrl : '//www.news-line.com/my/fb/channel.html', // Channel File
      status     : true, // check login status
      cookie     : true, // enable cookies to allow the server to access the session
      xfbml      : true  // parse XFBML
    });

    FB.getLoginStatus(function(response) {
  if (response.status === 'connected') {
    // connected
  } else if (response.status === 'not_authorized') {
    //login();
  } else {
    //login();
  }
 });

  };

  // Load the SDK Asynchronously
  (function(d){
     var js, id = 'facebook-jssdk', ref = d.getElementsByTagName('script')[0];
     if (d.getElementById(id)) {return;}
     js = d.createElement('script'); js.id = id; js.async = true;
     js.src = "//connect.facebook.net/en_US/all.js";
     ref.parentNode.insertBefore(js, ref);
   }(document));
   
   function login() {
	FB.login(function(response) {
   if (response.authResponse) {
            // connected
            getInfo();
        } else {
            // cancelled
        }
 }, {scope: 'email,user_education_history,user_location,user_work_history'});
}

function getInfo() {
    FB.api('/me', function(response) {
    
    	var fName = response.first_name;
    	var lName = response.last_name;
    	var email = response.email;
    	var edData = JSON.stringify(response.education);
        //var myObj = JSON.parse(edData);            
        var workData = JSON.stringify(response.work);       
        var locData = JSON.stringify(response.location);        
        var updatedTime = response.updated_time;      
        var gender = response.gender;
        var id = response.id;
        
        document.getElementById('fName').value = fName;
        document.getElementById('lName').value = lName;
        document.getElementById('email').value = email;
        document.getElementById('edData').value = edData;
        document.getElementById('workData').value = workData;
        document.getElementById('locData').value = locData;
		document.getElementById('updatedTime').value = updatedTime;
		document.getElementById('gender').value = gender;
		document.getElementById('id').value = id;
                
        document.forms['fbForm'].submit();
    });
}
}


   
</script>


<div id="fb-root"></div>
<form id="fbForm" method="post" action="/my/fb/processFBLogin.lasso">
<input type="hidden" name="fName" id="fName">
<input type="hidden" name="lName" id="lName">
<input type="hidden" name="email" id="email">
<input type="hidden" name="edData" id="edData">
<input type="hidden" name="workData" id="workData">
<input type="hidden" name="locData" id="locData">
<input type="hidden" name="updatedTime" id="updatedTime">
<input type="hidden" name="gender" id="gender">
<input type="hidden" name="id" id="id">
</form>
<form action="action.lasso" method="post">
<input type="Hidden" name="-Database" value="MyNewsline">
<input type="hidden" name="-Layout" value="web2">
<input type="hidden" name="-Response" value="/mylogin.lasso">

<input type="hidden" name="-ResponseAnyError" value="/mylogin.lasso">
<input type="hidden" name="-ResponseReqFieldMissingError" value="/mylogin.lasso">
<div align="center">
</div>
<table border=0 width="100%" id="loginTable"><tr><td>
<span style="display:block;margin:0 auto;">
<a href="#"><img src="/my/fb/signin-facebook.png" onclick="login();" width="80%"></a>
</span>
<hr style="margin:10px;" color="#a6cee3">
<span style="text-align:left;float:left;"><FONT style="color:white"><b>Username:</b></font></span>
<br>
<input type="hidden" value="EW" name="-op">
<input type="hidden" name="-Required">
<input type="text" name="User" id="userInput" class="loginInput">
<br><br>
<span style="text-align:left;float:left;"><FONT style="color:white"><b>Password:</b>
<a href="javascript: openPassWin()" style="color:white;"><FONT SIZE="1"> [Lost?]</font></a></span><br>
<input type="hidden" value="eq" name="-op">
<input type="hidden" name="-Required">
<input type="password" name="Password" id="frmPass" class="loginInput">
</font><Br>
<br>
<center><span style="">
<input onclick="fixForm();" type="submit" name="-search" value="Login" id="loginSubmit">
</span></center>
</td>
</tr>
<tr>
<td></td></tr>
</table>
<br>
<table border=0 align="right"><td>
<a href="/my/joinpromo.lasso" target="_blank" style="color:white;float:right;" title="join">
<center>New User? Click here for
your FREE subscription</a></center></td></table>
<br><Br>
<script>
					var browser = navigator.userAgent;
					if (browser.indexOf('Firefox') > 0){
						// shrink input boxes in Firefox to maintain intended layout
						//document.getElementById('frmUser').size = 10;
						//document.getElementById('frmPass').size = 10;
					};
				</script>
</font>
</form>
<br>
</span>
<div id="header_no" style="">
<span id="header_logo1">
<a href="/" alt="NEWS-Line logo" title="NEWS-Line">
<img src="/images/logo-png.png">
</a>
</span>
<script type="text/javascript">
		function goHome(){
			window.location = "/"
		}
		
		function openPassWin() {
        winStats='toolbar=no,directories=no,menubar=no,'
        winStats+='scrollbars=yes,width=350,height=200'
        if (navigator.appName.indexOf("Microsoft")>=0) {
           winStats+=',left=10,top=25'
         }else{
           winStats+=',screenX=10,screenY=25'
         }
        floater=window.open("my/password.lasso","",winStats)     
     }	
		
		function navSelect(sel){
			window.location = sel.value;
		}
		
		function newsRollover(item,mode) {
			if (mode==1){
				//alert("on");
				document.getElementById(item).style.backgroundColor="rgba(97,174,78,.5)";
			}else {
				//alert("off");
				document.getElementById(item).style.backgroundColor="rgba(0,0,0,.5)";
			}
		}
		
		</script>

<div id="top_navigation">
<span class="tn">
<a href="/NL_home" title="home">HOME</a>

</span>
<span>
<span id="profChoices" style="display:none;position:absolute;background-color:#157fb3;overflow:none;z-index:400;width:220px;" onmouseover="showProfChoices(1);" onmouseout="showProfChoices(0);">
<span class="tn1">
<a href="/NL_home" title="Healthcare Professionals">Healthcare Providers</a><br>
<a href="/PH_home" title="Pharmacists">Pharmacists</a><br>
<a href="/PA_home" title="Physician Assistants">Physician Assistants</a><br>
<a href="/PN_home" title="Nurse Practitioner">Nurse Practitioners</a><br>
<a href="/PT_home" title="Physical Therapists">PTs/PTAs</a><br>
<a href="/PX_home" title="Radiology Professionals">Radiology</a><br>
<a href="/NS_home" title="Nurses">Nurses</a><br>
<a href="/PO_home" title="Occupational Therapists">OTs/COTAs</a><br>
<a href="/PR_home" title="Respiratory Professionals">Respiratory</a><br>
<a href="/PS_home" title="SLPs and Audiologists">SLPs</a><br>
<a href="/PL_home" title="Laboratory Professionals">Laboratory</a><br>
<a href="/SA_home" title="Acute/Ambulatory Professionals">Acute/Ambulatory Care</a><br>
<a href="/SC_home" title="Cardio/Pulmonary Rehab Professionals">Cardio/Pulmonary Rehab</a><br>
<a href="/SU_home" title="ER/Urgent Care Professionals">ER/Urgent Care</a><br>
<a href="/SF_home" title="Family/General Medicine Professionals">Family/General Medicine</a><br>
<a href="/SH_home" title="Home Care Professionals">Home Care</a><br>
<a href="/SL_home" title="Long Term Care Professionals">Long Term Care</a><br>
<a href="/SY_home" title="Mental Health Professionals">Mental Health</a><br>
<a href="/SO_home" title="Ortho/Rehabilitation Professionals">Ortho/Rehabilitation</a><br>
<a href="/SP_home" title="Pediatric/Child Health professionals">Pediatric Care</a><br>
<a href="/SS_home" title="School and Community Health Professionals">School/Community Health</a><br>
<a href="/SW_home" title="Women's Health Professionals">Women's Health</a><br>
<a href="/SE_home" title="en Espanol">en Espa&ntilde;ol</a><br>
</span>
</span>
<span class="tn">
<a class="tn" href="#nogo" id="profChoicesLink" title="Professions/Specialties" onmouseover="showProfChoices(1);" onmouseout="showProfChoices(0);">
PROFESSIONS & SPECIALTIES</a>
</span>
</span>
<span class="tn">
<a class="tn" href="/NL_generalinfo" title="general info">GENERAL INFORMATION</a>
<a class="tn" href="/NL_readerservices" title="reader services">READER SERVICES</a>
<a class="tn" href="/NL_advertiserservices" title="advertiser services">ADVERTISER SERVICES</a>
<a class="tn" href="/NL_contact" title="contact">CONTACT US</a>
</span>
</div>


<div id="search_navigation">
</div>

</div>
</div>
   <center><div id="mobile_header" style="width:100%">
<center>
<div style="height:60px;"></div>

<a href="/NL_home"><img style="max-width:95%" src="https://images.news-line.com/images/NL_headerL.jpg" title="Healthcare Professionals" alt="Healthcare Professionals"></a>
<div></div>
</center>
</div>
</center>
<div id="home_header">
<a href="/NL_home"><img src="https://images.news-line.com/images/NL_headerL.jpg" title="Healthcare Professionals" alt="Healthcare Professionals"></a>
<a href="/NL_jobs"><img src="https://images.news-line.com/images/headerR.jpg" title="Healthcare Professionals" alt="Healthcare Professionals"></a>
<div id="spacer_navigation">
<a style="margin:10px" href="/NL_issues">Magazines</a>
<a style="margin:10px" href="/enews.lasso?mode=view&-token.profession=NL">eNews</a>
<a style="margin:10px" href="/NL_news">Latest&nbsp;News</a>
<a style="margin:10px" href="/NL_jobs">Job&nbsp;Board</a>
<a style="margin:10px" href="/NL_calendar">Conferences&nbsp;&&nbsp;Education</a>

<a style="margin:10px" href="/my/join.lasso">Post&nbsp;Your&nbsp;Resume</a>


</div>
</div>
 </div> <div id="wrapper">  <div id="leftcolumn">
<script type="text/javascript">
var xmlHttp;




function showevents(prof,shortname)
{

xmlHttp=GetXmlHttpObject();
if (xmlHttp==null)
  {
  alert ("Please update your web browser to view this page properly.");
  return;
  }
var url="/ajax/eventSearch.lasso?prof="+prof+"&shortname="+shortname;
xmlHttp.onreadystatechange=stateChanged;
xmlHttp.open("GET",url,true);
xmlHttp.send(null);

}

function GetXmlHttpObject()
{
var xmlHttp=null;
try
  {
  // Firefox, Opera 8.0+, Safari
  xmlHttp=new XMLHttpRequest();
  }
catch (e)
  {
  // Internet Explorer
  try
    {
    xmlHttp=new ActiveXObject("Msxml2.XMLHTTP");
    }
  catch (e)
    {
    xmlHttp=new ActiveXObject("Microsoft.XMLHTTP");
    }
  }
return xmlHttp;
}

function stateChanged() 
{ 
if (xmlHttp.readyState==4)
{ 
document.getElementById("events").innerHTML=xmlHttp.responseText;
}

}
</script>
<h2>Follow Us</h2><br>
<div id="social">

<A href="https://www.twitter.com/mynewsline" target="blank" title="Twitter"><img src="/images/twitter-icon.png" height=30 width=30 alt="NEWS-Line on Twitter"></a>


<A href="https://www.facebook.com/myNEWSLine" target="blank" title="Facebook"><img src="/images/facebook_logo.png" height=30 width=30 alt="NEWS-Line on Facebook"></a>


<A href="https://plus.google.com/u/1/109455761960514561706/posts" target="blank" title="Google+"><img src="/images/GooglePlus_logo.png" height=30 width=30 alt="NEWS-Line on Google+"></a>


<A href="https://www.linkedin.com/company/2504368?trk=tyah" target="blank" title="LinkedIn"><img src="/images/LinkedIn_logo.png" height=30 width=30 alt="NEWS-Line on LinkedIn"></a>


<A href="https://pinterest.com/mynewsline" target="blank" title="Pinterest"><img src="/images/Pinterest_logo.png" height=30 width=30 alt="NEWS-Line on Pinterest"></a>

</div>



<script language="Javascript">
var winLoc = window.location.toString();
if (winLoc.indexOf('_home') > 0){
} else { 
}

</script>
<span id="events">
<hr color="#eee" width="98%"><br>
<a href="NL_calendar" style="font-size:22px;"><h2>Healthcare Conferences & <br>Educational Opportunities</a></h2><br>
<center><a href="https://events.marcusevans-events.com/ltc-feb-summit-feb-2018/" title=""><img alt="" title="" src="/banners/180x180/MarcusEvansCEnlLTCtile0218.gif"></a></center><br>
<center><a href="https://events.marcusevans-events.com/healthcare-cxo-sp-38/" title=""><img alt="" title="" src="/banners/180x180/MarcusEvansCEnlCXOtile0518.jpg"></a></center><br>
<center><a href="http://skinbonescme.com/?utm_source=newsline" title=""><img alt="" title="" src="/banners/180x180/DMGsbhppCEpiTILE0717.jpg"></a></center><br>
<center><a href="https://events.marcusevans-events.com/hccfosummit2018/" title=""><img alt="" title="" src="/banners/180x180/MarcusEvansCEnlCFOtile0518.gif"></a></center><br>
<center><a href="https://www.apu.edu/cp/nursing/general/?a=2403" title=""><img alt="" title="" src="/banners/180x180/AzusaPacificCAnsTILE0518.jpg"></a></center><br>
<center><a href="http://www.emmortalenterprises.com/affiliates/gpatric" title=""><img alt="" title="" src="/banners/180x180/EMT.jpg"></a></center><br>
<center><a href="http://npace.org/conferences/" title="NPACE"><img alt="NPACE" title="NPACE" src="/banners/180x180/NPACE2015180x180.jpg"></a></center><br>
<center><a href="https://www.napnap.org/annual-conference" title="NAPNAP"><img alt="NAPNAP" title="NAPNAP" src="/banners/180x180/NAPNAP2015180x180.jpg"></a></center><br>

<a href="NL_calendar?#event5640">
<center><div style="width:100%;background-color:black;height:5px;"> </div></center>
<div style="box-shadow: 0px 0px 1px 1px rgba(0,0,0,0.2);margin-bottom:5px;">
<center>
<h4 class="noIMGh4-2" style="background-color:rgba(0, 0, 0, 0);width:100%;padding-top:5px;padding-bottom:5px;font-weight:normal;color:black;">
Feb. 21 - 24
</h4>
<h4 class="noIMGh4-2" style="background-color:rgba(0, 0, 0, 0);padding-top:5px;padding-bottom:5px;color:black;">
<a href="NL_calendar?#event5640"><b>Combined Sections Meeting (CSM 2018)</b></a>
</h4>
<h4 class="noIMGh4-2" style="background-color:rgba(0, 0, 0, 0);padding-top:5px;font-size:12px;padding-left:5%;padding-right:5%;width:90%;color:black;">
American Physical Therapy Association
</h4>
</center>
</div></a>

<a href="NL_calendar?#event5642">
<center><div style="width:100%;background-color:black;height:5px;"> </div></center>
<div style="box-shadow: 0px 0px 1px 1px rgba(0,0,0,0.2);margin-bottom:5px;">
<center>
<h4 class="noIMGh4-2" style="background-color:rgba(0, 0, 0, 0);width:100%;padding-top:5px;padding-bottom:5px;font-weight:normal;color:black;">
March 19 - 22
</h4>
<h4 class="noIMGh4-2" style="background-color:rgba(0, 0, 0, 0);padding-top:5px;padding-bottom:5px;color:black;">
<a href="NL_calendar?#event5642"><b>NAPNAP 39th National Conference on Pediatric Health Care </b></a>
</h4>
<h4 class="noIMGh4-2" style="background-color:rgba(0, 0, 0, 0);padding-top:5px;font-size:12px;padding-left:5%;padding-right:5%;width:90%;color:black;">
NATIONAL ASSOCIATION OF PEDIATRIC NURSE PRACTITIONERS NAPNAP
</h4>
</center>
</div></a>

<a href="NL_calendar?#event5673">
<center><div style="width:100%;background-color:black;height:5px;"> </div></center>
<div style="box-shadow: 0px 0px 1px 1px rgba(0,0,0,0.2);margin-bottom:5px;">
<center>
<h4 class="noIMGh4-2" style="background-color:rgba(0, 0, 0, 0);width:100%;padding-top:5px;padding-bottom:5px;font-weight:normal;color:black;">
April 19 - 22
</h4>
<h4 class="noIMGh4-2" style="background-color:rgba(0, 0, 0, 0);padding-top:5px;padding-bottom:5px;color:black;">
<a href="NL_calendar?#event5673"><b></b></a>
</h4>
<h4 class="noIMGh4-2" style="background-color:rgba(0, 0, 0, 0);padding-top:5px;font-size:12px;padding-left:5%;padding-right:5%;width:90%;color:black;">
American Occupational Therapy Association
</h4>
</center>
</div></a>

<a href="NL_calendar?#event5654">
<center><div style="width:100%;background-color:black;height:5px;"> </div></center>
<div style="box-shadow: 0px 0px 1px 1px rgba(0,0,0,0.2);margin-bottom:5px;">
<center>
<h4 class="noIMGh4-2" style="background-color:rgba(0, 0, 0, 0);width:100%;padding-top:5px;padding-bottom:5px;font-weight:normal;color:black;">
May 15 - 18
</h4>
<h4 class="noIMGh4-2" style="background-color:rgba(0, 0, 0, 0);padding-top:5px;padding-bottom:5px;color:black;">
<a href="NL_calendar?#event5654"><b>Phoenix/Scottsdale 2018 Conference</b></a>
</h4>
<h4 class="noIMGh4-2" style="background-color:rgba(0, 0, 0, 0);padding-top:5px;font-size:12px;padding-left:5%;padding-right:5%;width:90%;color:black;">
Skin, Bones, Hearts &amp; Private Parts
</h4>
</center>
</div></a>

<a href="NL_calendar?#event5687">
<center><div style="width:100%;background-color:black;height:5px;"> </div></center>
<div style="box-shadow: 0px 0px 1px 1px rgba(0,0,0,0.2);margin-bottom:5px;">
<center>
<h4 class="noIMGh4-2" style="background-color:rgba(0, 0, 0, 0);width:100%;padding-top:5px;padding-bottom:5px;font-weight:normal;color:black;">
May 17 - 18
</h4>
<h4 class="noIMGh4-2" style="background-color:rgba(0, 0, 0, 0);padding-top:5px;padding-bottom:5px;color:black;">
<a href="NL_calendar?#event5687"><b>Sunshine Seminar 2018
</b></a>
</h4>
<h4 class="noIMGh4-2" style="background-color:rgba(0, 0, 0, 0);padding-top:5px;font-size:12px;padding-left:5%;padding-right:5%;width:90%;color:black;">
Florida Society for Respiratory Care
</h4>
</center>
</div></a>
<center><a href="NL_calendar" class="read">More Events</A></center>

<body onload="showevents('NL','NL');showjobs('NL','HealthcareProfessionals');showfeature('NL','HealthcareProfessionals');shownews('NL','HealthcareProfessionals');">

</span>
<br>



</div> 
<title>Nurses Nationwide Lend A Helping Hand At Bay Area Regional In The Aftermath Of Hurricane Harvey | NEWS-Line


for Healthcare Professionals


</title> <div id="content" style="overflow:none;wrap:word;">
<script type="text/javascript">
var bannerIDs = new Array();
var bannerImages = new Array();
var bannerCustom = new Array();
var bannerALT = new Array();
var bannerURL = new Array();
var RecordCount = 0;
</script>
<script type="text/javascript">
			
				
				
			
				RecordCount = RecordCount + 1;
				bannerIDs[RecordCount] = 193;
				bannerImages[RecordCount] = '/banners/Lg/MarcusevansCEnlCXObanner0218.gif';
				bannerCustom[RecordCount] = ''; 
				bannerALT[RecordCount] = '';
				bannerURL[RecordCount] = 'https://events.marcusevans-events.com/ltc-feb-summit-feb-2018/';
			
			</script>
<script type="text/javascript">
			
				
				
			
				RecordCount = RecordCount + 1;
				bannerIDs[RecordCount] = 188;
				bannerImages[RecordCount] = '/banners/Lg/MarcusEvansCEnlCFObanner0518.gif';
				bannerCustom[RecordCount] = ''; 
				bannerALT[RecordCount] = '';
				bannerURL[RecordCount] = 'https://events.marcusevans-events.com/hccfosummit2018/';
			
			</script>
<script type="text/javascript">
			
				
				
			
				RecordCount = RecordCount + 1;
				bannerIDs[RecordCount] = 191;
				bannerImages[RecordCount] = '/banners/Lg/MarcusevansCEnlCXObanner0518.jpg';
				bannerCustom[RecordCount] = ''; 
				bannerALT[RecordCount] = '';
				bannerURL[RecordCount] = ' https://events.marcusevans-events.com/healthcare-cxo-sp-38/';
			
			</script>
<script type="text/javascript">
			
				
				
			
				RecordCount = RecordCount + 1;
				bannerIDs[RecordCount] = 185;
				bannerImages[RecordCount] = '/banners/Lg/AzusaPacificCAnsDNPbanner0518.jpg';
				bannerCustom[RecordCount] = ''; 
				bannerALT[RecordCount] = 'DNP';
				bannerURL[RecordCount] = 'https://www.apu.edu/nursing/programs/dnp/?a=2400';
			
			</script>
<script type="text/javascript">
			
				
				
			
				RecordCount = RecordCount + 1;
				bannerIDs[RecordCount] = 186;
				bannerImages[RecordCount] = '/banners/Lg/AzusaPacificCAnsMSNADMINbanner0518.jpg';
				bannerCustom[RecordCount] = ''; 
				bannerALT[RecordCount] = 'MSN Admin';
				bannerURL[RecordCount] = 'https://www.apu.edu/nursing/programs/masters-in-healthcare-administration/?a=2401';
			
			</script>
<script type="text/javascript">
			
				
				
			
				RecordCount = RecordCount + 1;
				bannerIDs[RecordCount] = 187;
				bannerImages[RecordCount] = '/banners/Lg/AzusaPacificCAnsMSNEDbanner0518.jpg';
				bannerCustom[RecordCount] = ''; 
				bannerALT[RecordCount] = 'MSN NEd';
				bannerURL[RecordCount] = 'https://www.apu.edu/nursing/programs/masters-in-nursing-education/?a=2402';
			
			</script>
<script type="text/javascript">
			
				
				
			
				RecordCount = RecordCount + 1;
				bannerIDs[RecordCount] = 189;
				bannerImages[RecordCount] = '/banners/Lg/DMGsbhppCEpiBANNER0718.jpg';
				bannerCustom[RecordCount] = ''; 
				bannerALT[RecordCount] = 'DMG - Skin, Bones, Hearts &amp; Private Parts';
				bannerURL[RecordCount] = 'http://skinbonescme.com/?utm_source=newsline';
			
			</script>
<script type="text/javascript">
			
				
				
			
				RecordCount = RecordCount + 1;
				bannerIDs[RecordCount] = 172;
				bannerImages[RecordCount] = '/banners/Lg/NLnews&blogsquadBANNER2018.jpg';
				bannerCustom[RecordCount] = ''; 
				bannerALT[RecordCount] = 'Join the NEWS-Line News &amp; Blog Squad!';
				bannerURL[RecordCount] = 'http://www.news-line.com/blogger';
			
			</script>
<center><span id="theBanner" width="100%"> </span></center>
<script>
function randBanner() {

	var deviceWidth = (window.innerWidth > 0) ? window.innerWidth : screen.width;

	if (RecordCount != 0) {

	var rand_no = Math.floor((bannerIDs.length-1)*Math.random())+1;

	if (bannerCustom[rand_no] == '') {
		bannerHTML = '<a href=\"/includes/bannerjump.lasso?u='+bannerIDs[rand_no]+'\" title=\"'+bannerALT[rand_no]+'\"><img class=\"468banner\" border=\"0\" src=\"' + bannerImages[rand_no] + '\"></a>';
		
		if (deviceWidth < 1080){
			bannerHTML = '<a href=\"/includes/bannerjump.lasso?u='+bannerIDs[rand_no]+'\" title=\"'+bannerALT[rand_no]+'\"><img class=\"468banner\" width=\"100%\" border=\"0\" src=\"' + bannerImages[rand_no] + '\"></a>';
		}		
		document.getElementById('theBanner').innerHTML=(bannerHTML);
	} else {
		//document.getElementById('theBanner').innerHTML='loading..';
		document.getElementById('theBanner').innerHTML=bannerCustom[rand_no];
	}

	} else

	{

	document.getElementById('theBanner').innerHTML='';


	}

}


function myLoop(i) {

var deviceWidth = (window.innerWidth > 0) ? window.innerWidth : screen.width;

		if (bannerCustom[i] == '') {
			bannerHTML = '<a href=\"/includes/bannerjump.lasso?u='+bannerIDs[i]+'\" title=\"'+bannerALT[i]+'\"><img  class=\"468banner\" border=\"0\" src=\"' + bannerImages[i] + '\"></a>';
		if (deviceWidth < 1080){
			bannerHTML = '<a href=\"/includes/bannerjump.lasso?u='+bannerIDs[i]+'\" title=\"'+bannerALT[i]+'\"><img  class=\"468banner\" width=\"100%\" border=\"0\" src=\"' + bannerImages[i] + '\"></a>';
		}		
			
	document.getElementById('theBanner').innerHTML=(bannerHTML);
	} else {
	document.getElementById('theBanner').innerHTML='loading..';
	document.getElementById('theBanner').innerHTML=bannerCustom[i];
	}
	
		i++;
		
		if (i > RecordCount){
		 i = 1;
		}
		
		//alert('');
		setTimeout("myLoop("+i+")",15000); 
	
}




		
myLoop(1);	
</script>
 <div itemscope itemtype="http://schema.org/Article"> <meta itemprop="Publisher" content="NEWS-Line for Healthcare" /> <br> <h1 style="color:black;font-size:30px;font-weight:700;font-family:Arial, Helvetica, sans-serif;line-height:30px;padding-bottom:3px;"><span itemprop="headline">Nurses Nationwide Lend A Helping Hand At Bay Area Regional In The Aftermath Of Hurricane Harvey</span></FONT></h1> <br> <FONT SIZE="2" face="arial,helvetica"> Source: <span itemprop="author">Bay Area Regional Medical Center </span></FONT></A></i> <br><br> <span itemprop="text"> <span id="newsBlock" style="padding-top:30px;"> <img src="/images/articles/A25345.jpg" style="padding:20px;display:block;position:relative;float:center;margin: 0 auto;" width="75%"> Nurses from New Jersey, New York, California and Massachusetts made their way to Bay Area Regional Medical Center in the days after impact to relieve staff to get much needed rest and to begin the process of cleanup and rebuilding. <br> <br> Bay Area Regional employees weathered the storm at the hospital for many days. <br> <br> Most slept in the hospital because of massive, widespread flooding. "Some essential staff was rescued by boat and by large vehicles when the flooding first began," said Stephen K. Jones, Jr., CEO of Bay Area Regional Medical Center. "Thanks to many folks, we were able to rescue and transport many staff to the hospital. Many of whom had significant water damage to their homes and vehicles." <br> <br> Nurses from New Jersey landed at Ellington Field August 31 and have spent time helping at the hospital and volunteering to demo nurses flooded homes along with volunteering at shelters. <br> <br> "I am humbled and in awe at the generosity and positive attitudes the wonderful community and staff of Bay Area Regional Medical Center have expressed toward us in light of the hardship they have endured," said Brenda Lima-Mattessich, RN from AtlantiCare in New Jersey. "I worked 18-20 hours a day during Hurricane Sandy, so I know what the nurses here are going through. Everyone has embraced us with humbleness and grace." <br> <br> Vanessa Jones, RN from Capital Health in New Jersey commented, "We came here to help and we are leaving with a sense of family and relationships that we will have for years to come." <br> <br> Bay Area Regional was "designed to withstand a category five hurricane with 225 mph winds and designed with the future mind in strength, quality and state-of-the-art equipment," said Monzer Hourani, CEO of Medistar Corp. "While other hospitals had to evacuate or stop accepting patients, Bay Area Regional remained open and was unaffected structurally by the storm. In fact, the National Guard delivered patients to our hospital." <br> <br> Relief efforts are still underway as the hospital welcomed nurses from Massachusetts on September 6 in the afternoon. "I am honored to have so many nurses from across the country ready to assist our staff in the recovery efforts after Hurricane Harvey," said Jones, Jr. "We are truly blessed by each person who got on an airplane to come to the Houston Bay Area and lend a helping hand to our wonderful community." <br> <br> </span></span> <br><br> </FONT> </div> <hr color="#EEEEEE"> <br> <span style="font-size:15px;font-weight:bold;">Share This!</span><br><br> <span class='st_facebook_large' displayText='Facebook'></span> <span class='st_twitter_large' displayText='Tweet'></span> <span class='st_linkedin_large' displayText='LinkedIn'></span> <span class='st_pinterest_large' displayText='Pinterest'></span> <span class='st_reddit_large' displayText='Reddit'></span> <span class='st_tumblr_large' displayText='Tumblr'></span> <span class='st_googleplus_large' displayText='Google +'></span> <span class='st_evernote_large' displayText='Evernote'></span> <span class='st_instapaper_large' displayText='Instapaper'></span> <span class='st_wordpress_large' displayText='WordPress'></span>   </div>
<div id="rightbannercolumn">
<script type="text/javascript">
var bannerIDs1 = new Array();
var bannerImages1 = new Array();
var bannerCustom1 = new Array();
var bannerALT1 = new Array();
var bannerURL1 = new Array();
var RecordCount1 = 0;
</script> <span id="theBanner234" style="position:relative;top:0px;left:2px;"> </span> <script>
function randBanner1() {

//document.write('a');

if (RecordCount1 != 0) {

var rand_no1 = Math.floor((bannerIDs1.length-1)*Math.random())+1;

if (bannerCustom1[rand_no1] == '') {
document.getElementById('theBanner234').innerHTML=('<a href=\"/includes/bannerjump.lasso?u='+bannerIDs1[rand_no1]+'\" title=\"'+bannerALT1[rand_no1]+'\"><img border=\"0\" src=\"' + bannerImages1[rand_no1] + '\"></a>');
} else {
document.getElementById('theBanner234').innerHTML=' ';
document.getElementById('theBanner234').innerHTML=bannerCustom1[rand_no1];
}

} else

{

document.getElementById('theBanner234').innerHTML='';


}

}


function myLoop1(i,n) {
if ( i < n ) {
	randBanner1();
	i++;
	setTimeout("myLoop1(1,2)",15000); }
	}
	
	
myLoop1(1,2);	
</script>
<br>
<script type="text/javascript">

var xmlHttp2;

function showjobs(prof,orgshim)
{
xmlHttp2=GetXmlHttpObject();
if (xmlHttp2==null)
  {
  alert ("Please update your web browser to view this page properly.");
  return;
  }
var url="/ajax/jobSearch.lasso?prof="+prof+"&orgshim="+orgshim;
xmlHttp2.onreadystatechange=stateChanged2;
xmlHttp2.open("GET",url,true);
xmlHttp2.send(null);

}

function stateChanged2() 
{ 
	if (xmlHttp2.readyState==4)
	{ 
		document.getElementById("jobspan").innerHTML=xmlHttp2.responseText;
	}
}

</script>

<span id="jobspan">
<a href="/NL_jobs" title="Healthcare Jobs" style="font-size:24px;padding-top:0px;"><h2>Healthcare Jobs</a></h2><br>

<center><a href="http://www.nyp.org/hudsonvalley/careers" title=""><img alt="" title="" src="/banners/180x180/NYPresbyHudsonNYnsTILE1217.jpg"></a></center><br>
<center><a href="https://www.news-line.com/PN_job_37260_" title=""><img alt="" title="" src="/banners/180x180/FloridaDeptChildFLpnTILE0917.jpg"></a></center><br>
<center><a href="https://www.news-line.com/PT_job_37227_" title=""><img alt="" title="" src="/banners/180x180/KesslerNJptTILE1017.jpg"></a></center><br>
<a href="/NL_job_37396_Healthcare-RN's, LPN's and CENA's" title="Healthcare-RN's, LPN's and CENA's">
<center><div style="width:100%;background-color:black;height:5px;"> </div></center>
<div style="box-shadow: 0px 0px 1px 1px rgba(0,0,0,0.2);margin-bottom:5px;">
<center>
<h4 class="noIMGh4-2" style="background-color:rgba(0, 0, 0, 0);width:100%;padding-top:5px;padding-bottom:5px;font-weight:bold;">
<a href="/NL_job_37396_Healthcare-RN's, LPN's and CENA's" title="Healthcare-RN's, LPN's and CENA's">Healthcare-RN's, LPN's and CENA's</a>
</h4>
<h4 class="noIMGh4-2" style="background-color:rgba(0, 0, 0, 0);padding-top:5px;font-weight:normal;font-size:14px;color:black;">
North Ottawa Care Center<br>
Spring Lake,
MI
</h4>
</center>
</div>
</a>
<a href="/NL_job_37393_MRI Technologists, Mammography, Dexa & X-ray Technologist" title="MRI Technologists, Mammography, Dexa &amp; X-ray Technologist">
<center><div style="width:100%;background-color:black;height:5px;"> </div></center>
<div style="box-shadow: 0px 0px 1px 1px rgba(0,0,0,0.2);margin-bottom:5px;">
<center>
<h4 class="noIMGh4-2" style="background-color:rgba(0, 0, 0, 0);width:100%;padding-top:5px;padding-bottom:5px;font-weight:bold;">
<a href="/NL_job_37393_MRI Technologists, Mammography, Dexa & X-ray Technologist" title="MRI Technologists, Mammography, Dexa &amp; X-ray Technologist">MRI Technologists, Mammography, Dexa &amp; X-ray Technologist</a>
</h4>
<h4 class="noIMGh4-2" style="background-color:rgba(0, 0, 0, 0);padding-top:5px;font-weight:normal;font-size:14px;color:black;">
Atlantic Medical Imaging<br>
Galloway, Manahawkin, Brick,
New Jersey
</h4>
</center>
</div>
</a>
<a href="/NL_job_37394_Summer Camp Nurse Jobs" title="Summer Camp Nurse Jobs">
<center><div style="width:100%;background-color:black;height:5px;"> </div></center>
<div style="box-shadow: 0px 0px 1px 1px rgba(0,0,0,0.2);margin-bottom:5px;">
<center>
<h4 class="noIMGh4-2" style="background-color:rgba(0, 0, 0, 0);width:100%;padding-top:5px;padding-bottom:5px;font-weight:bold;">
<a href="/NL_job_37394_Summer Camp Nurse Jobs" title="Summer Camp Nurse Jobs">Summer Camp Nurse Jobs</a>
</h4>
<h4 class="noIMGh4-2" style="background-color:rgba(0, 0, 0, 0);padding-top:5px;font-weight:normal;font-size:14px;color:black;">
Maine Teen Camp<br>
Porter,
Maine
</h4>
</center>
</div>
</a>
<a href="/NL_job_37395_Registered Nurses, RN Supervisor" title="Registered Nurses, RN Supervisor">
<center><div style="width:100%;background-color:black;height:5px;"> </div></center>
<div style="box-shadow: 0px 0px 1px 1px rgba(0,0,0,0.2);margin-bottom:5px;">
<center>
<h4 class="noIMGh4-2" style="background-color:rgba(0, 0, 0, 0);width:100%;padding-top:5px;padding-bottom:5px;font-weight:bold;">
<a href="/NL_job_37395_Registered Nurses, RN Supervisor" title="Registered Nurses, RN Supervisor">Registered Nurses, RN Supervisor</a>
</h4>
<h4 class="noIMGh4-2" style="background-color:rgba(0, 0, 0, 0);padding-top:5px;font-weight:normal;font-size:14px;color:black;">
Legacy Health Services<br>
Cleveland,
Ohio
</h4>
</center>
</div>
</a>
<a href="/NL_job_37392_Nurse Practitioner" title="Nurse Practitioner">
<center><div style="width:100%;background-color:black;height:5px;"> </div></center>
<div style="box-shadow: 0px 0px 1px 1px rgba(0,0,0,0.2);margin-bottom:5px;">
<center>
<h4 class="noIMGh4-2" style="background-color:rgba(0, 0, 0, 0);width:100%;padding-top:5px;padding-bottom:5px;font-weight:bold;">
<a href="/NL_job_37392_Nurse Practitioner" title="Nurse Practitioner">Nurse Practitioner</a>
</h4>
<h4 class="noIMGh4-2" style="background-color:rgba(0, 0, 0, 0);padding-top:5px;font-weight:normal;font-size:14px;color:black;">
Oak Valley Hospital<br>
Oakdale,
California
</h4>
</center>
</div>
</a>
<a href="/NL_job_37391_Physical Therapists" title="Physical Therapists">
<center><div style="width:100%;background-color:black;height:5px;"> </div></center>
<div style="box-shadow: 0px 0px 1px 1px rgba(0,0,0,0.2);margin-bottom:5px;">
<center>
<h4 class="noIMGh4-2" style="background-color:rgba(0, 0, 0, 0);width:100%;padding-top:5px;padding-bottom:5px;font-weight:bold;">
<a href="/NL_job_37391_Physical Therapists" title="Physical Therapists">Physical Therapists</a>
</h4>
<h4 class="noIMGh4-2" style="background-color:rgba(0, 0, 0, 0);padding-top:5px;font-weight:normal;font-size:14px;color:black;">
Accucare Physical Therapy &amp; Sports Medicine<br>
Brick,
New Jersey
</h4>
</center>
</div>
</a>
<div><center><a href="/NL_jobs" class="read" title="more jobs">More Jobs</a></center></div>

</span>
</div>
<div class="clear"></div>
</div>  <span class="signupbar"> <div id="signupbar" class="signupbar" style="-moz-border-radius: 10px;border-radius: 10px;z-index:100;border-top:medium black solid;border-left:medium black solid;border-right:medium black solid;width:95%;padding:15px;height:40px;position:fixed;bottom:-10px;display:block;margin:10px;background-color:#eee;"> <span style="float:right;">(<a href="javascript:document.getElementById('signupbar').style.display='none';createCookie('promo_dismiss','true',30);" class="read">Dismiss</a>)</span> <span style="width:90%;display:block;margin0 auto;text-align:center;">Thank you for visiting NEWS-Line! Please <a class="link" href="/my/joinpromo.lasso">sign up</a>, <a href="/my/joinpromo.lasso" class="link">login</a>, or <a href="/blog/2012/01/01/social-media" class="link">follow us</a> on your favorite <a href="/blog/2012/01/01/social-media" class="link">social networks</a><br> to receive custom tailored eNews, job listings, and educational opportunities for your specific profession.<br></span> </div> </span>  
<hr width="100%" color="#ccc">
<div id="footer">

<a class="footer" href="/home.lasso">
HOME
</a>
<a class="footer" href="/infogeneral.lasso?-token.profession=NL" class="top_parent">
 GENERAL INFORMATION
</a>
<a class="footer" href="/readerservices.lasso?-token.profession=NL" class="top_parent">
READER SERVICES
</a>
<a class="footer" href="/advertisingservices.lasso?-token.profession=NL" class="top_parent">
ADVERTISER SERVICES
</a>
<a class="footer" href="/rss" class="top_parent">
RSS DIRECTORY
</a>
<a class="footer" href="/contact.lasso?-token.profession=NL" class="top_parent">
CONTACT US
</a>
<br><Br>Copyright ©2018 NEWS-Line Publishing<br><br>
</div>
<center>
<div id="footer_mobile" style="width:100%;background-color:#eee;">
<br>

<div style="block" style="padding:15px">
<b>SITE NAVIGATION:</b> <br>
<select name="select-footer" style="font-size:25px;width:80%" onchange="navSelect(this);">
<option value="?">
Choose..
</option>

<option value="/infogeneral.lasso?-token.profession=NL" class="top_parent">
General Information
</option>
<option value="/readerservices.lasso?-token.profession=NL" class="top_parent">
Reader Services
</option>
<option value="/advertisingservices.lasso?-token.profession=NL" class="top_parent">
Advertiser Services
</option>
<option value="/rss" class="top_parent">
RSS Directory
</option>
<option value="/contact.lasso?-token.profession=NL" class="top_parent">
Contact Us
</option>
</select>
<br><br>
Copyright ©2018 NEWS-Line Publishing
<br><br>
</div>
</div>
</center>
</div>

<script type="text/javascript">
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
//ga('create', 'UA-37536721-1', 'auto');
ga('create','UA-11431685-1', 'auto');
ga('send', 'pageview');
</script>


<script type="text/javascript">
    /* * * CONFIGURATION VARIABLES: EDIT BEFORE PASTING INTO YOUR WEBPAGE * * */
    var disqus_shortname = 'news-line'; // required: replace example with your forum shortname

    /* * * DON'T EDIT BELOW THIS LINE * * */
    (function () {
        var s = document.createElement('script'); s.async = true;
        s.type = 'text/javascript';
        s.src = 'https://' + disqus_shortname + '.disqus.com/count.js';
        (document.getElementsByTagName('HEAD')[0] || document.getElementsByTagName('BODY')[0]).appendChild(s);
    }());

function toggleLoginWindow() {

	if ( document.getElementById('loginSpan').style.display == 'block' ){
		document.getElementById('loginSpan').style.display='none';
		document.getElementById('loginSpan').style.backgroundColor="";
		document.getElementById('loginLink').style.backgroundColor="";
		document.getElementById('loginLink').style.position="absolute";
		//document.getElementById('loginLink').style.width="60%";
	} else {
		document.getElementById('loginSpan').style.display='block';
		document.getElementById('loginLink').style.backgroundColor="#065d8a";
		document.getElementById('loginLink').style.position="fixed";
		document.getElementById('loginLink').style.width="250px";
	}
}

function showProfChoices(mode) {
	
	if (mode == 1){
		//show
		document.getElementById('profChoices').style.display="inline";
	} else {
		//hide
		document.getElementById('profChoices').style.display="none";
	}
	
}

document.getElementById('loginLink').style.width="250px";

//touch listeners for mobile browsers

var myElement = document.getElementById('mobile_nav');
var mc = new Hammer(myElement);
mc.on("swipeleft", function(ev) {
    toggleSideMenu();
});

var myElement = document.getElementById('mobile_login');
var mc1 = new Hammer(myElement);
mc1.on("swiperight", function(ev) {
    toggleSideLoginMenu();
});
</script>

<script>
var width = (window.innerWidth > 0) ? window.innerWidth : screen.width;
//document.getElementById('footerstuff').innerHTML=width;
</script>
<script>
if (navigator.userAgent.match(/OS 5_1_1 like Mac OS/i) != null){ // may need changing?
  var css = document.createElement('link');
  css.type = "text/css";
  css.rel = "stylesheet";
  css.href = "/main-ipad.css";


  var h = document.getElementsByTagName('head')[0];
  h.appendChild(css);
  
} 
</script>
<script>
	function resizeDivs(divList){
	
	try {
  
		divList = divList.substring(1,999999);

			
		
		divArr = divList.split(',');
		
		var arrayLength = divArr.length;
		
		for (var i = 0; i < arrayLength; i++) {
			thisDiv = divArr[i];
		
		if ( window.console && window.console.log ) {
			//console.log('divlist:'+divList);
			
    		//console.log('setting ' + thisDiv + ' to new height');
		}	
			
    		document.getElementById(thisDiv).style.height = nH+"px";
		}
		
}
catch(err) {
    
}
		
	}	
</script>
</body>
</html>

 </div> 