// Use in iframes to change out targets
// Used in CoastalSearches,  CoastalStatistics
function chgSrc(my_href,my_target)
{
var x = document.getElementById(my_target);
x.target = my_target;
x.src = my_href;

return false;
}