<!-- 
var THIS_SITE="http://home.carolina.rr.com/coinstar";
function wo()
{
  where = "_blank";
  for (var i=0; i<=(document.links.length-1); i++)
  {
    /*
	 * If THIS_SITE is not in the URL then set the link to
	 * open or not open up a new page as defined by the form checkbox.
	 */
    if(document.links[i].href.indexOf(THIS_SITE)<0)
	  document.links[i].target='_new';
  }
}
// -->
