// This function will be used to call an IFrame using a direct path from URL
// Functionality provided by the exclusive Rufaro Technology, LLC
// RufaroTechnology.com

  function loadIF() {
  iFrameSrc=location.href.split('?');
    if ( iFrameSrc[1] != null ) {
      document.getElementById('contentpage').src=iFrameSrc[1];
      }
    else {
      document.getElementById('contentpage').src='subpage.htm'
      }
    }
