if (window != top) top.location = location;

var navbar_items = 8

image1on  = new Image();
image1off = new Image();
image1on.src  = "images/home_on.gif";
image1off.src = "images/home_off.gif";
var image1txt1  = '<a href="index.htm" ';
var image1txt2  = 'alt="Home" border="0"></a>\n';

image2on  = new Image();
image2off = new Image();
image2on.src  = "images/about_on.gif";
image2off.src = "images/about_off.gif";
var image2txt1  = '<a href="about.htm" ';
var image2txt2  = 'alt="About Us" border="0"></a>\n';

image3on  = new Image();
image3off = new Image();
image3on.src  = "images/capabilities_on.gif";
image3off.src = "images/capabilities_off.gif";
var image3txt1  = '<a href="capabilities.htm" ';
var image3txt2  = 'alt="Capabilities" border="0"></a>\n';

image4on  = new Image();
image4off = new Image();
image4on.src  = "images/contact_on.gif";
image4off.src = "images/contact_off.gif";
var image4txt1  = '<a href="contact.htm" ';
var image4txt2  = 'alt="Contact Us" border="0"></a>\n';

image5on  = new Image();
image5off = new Image();
image5on.src  = "images/epa_on.gif";
image5off.src = "images/epa_off.gif";
var image5txt1  = '<a href="epalinks.htm" ';
var image5txt2  = 'alt="Web Links" border="0"></a>\n';

image6on  = new Image();
image6off = new Image();
image6on.src  = "images/notices_on.gif";
image6off.src = "images/notices_off.gif";
var image6txt1  = '<a href="notices.htm" ';
var image6txt2  = 'alt="Notices/Regulatory News/Other Information" border="0"></a>\n';

image7on  = new Image();
image7off = new Image();
image7on.src  = "images/other_on.gif";
image7off.src = "images/other_off.gif";
var image7txt1  = '<a href="other.htm" ';
var image7txt2  = 'alt="Documents/Forms/General Information" border="0"></a>\n';

image8on  = new Image();
image8off = new Image();
image8on.src  = "images/jobs_on.gif";
image8off.src = "images/jobs_off.gif";
var image8txt1  = '<a href="jobs.htm" ';
var image8txt2  = 'alt="Job Openings - Careers" border="0"></a>\n';

function img_on(imgName)
{ document [imgName].src = eval(imgName + "on.src"); }

function img_off(imgName)
{ document [imgName].src = eval(imgName + "off.src"); }


function getNavBar(imgnum) {

Content  = '<td class=navbar width=182>\n';

for (var i=1; i<=navbar_items; i++) {

  Content += eval('image' + i + 'txt1');

  if (i==imgnum)
    { Content += '><img name="image' + imgnum + '" src="' + eval('image'+imgnum + 'on.src') + '" '; }
  else
    { Content += 'onMouseOver="img_on(\'image' + i + '\')" onMouseOut="img_off(\'image' + i + '\')">' +
                 '<img name="image' + i + '" src="' + eval('image' + i + 'off.src') + '" '; }

  Content += eval('image' + i + 'txt2') + '<br>\n';
}

Content += '</td>';

document.write(Content);
}


function getRights() {
Content  = '<br><br>';
Content += '<div class=rights>';
Content += 'Updated 2010  All Rights Reserved, by Admiral Environmental Services, Inc.<br>';
Content += '2000-01 All Rights Reserved<br>';
Content += 'Created and Designed by <a href="javascript:companyPopup();">BG Web Group</a><br>';
Content += '</div>\n';

document.write(Content);
}

function getMainLogo() {
Content  = '';

Content  = '<table border=0 cellspacing=0 cellpadding=0 align=center>\n';
Content += '<tr>\n';
Content += '<td class=leftlogo height=102 width=220>\n';
Content += '<img src="images/mainlogo.jpg" alt="Admiral Logo" border=0>\n';
Content += '</td>\n';
Content += '<td class=rightlogo>\n';
Content += '<img src="images/dot.gif" width=395 height=2 border=0><br>\n';
Content += 'Consultants and Engineers on Environmental Control and Monitoring\n';
Content += '</td>\n';
Content += '</tr>\n';
Content += '</table>\n';
Content += '<br><br>';

document.write(Content);
}


function getBottomNavBar() {
Content  = '<br><br>';
Content += '<div class=bottomnavbar>';
Content += '<a href="index.htm">Home</a> |';
Content += '<a href="about.htm"> About Us</a> | ';
Content += '<a href="capabilities.htm"> Capabilities</a> | ';
Content += '<a href="contact.htm">Contact Us</a> | ';
Content += '<a href="epalinks.htm">Web Links</a> | ';
Content += '<a href="notices.htm">Notices</a> | ';
Content += '<a href="other.htm">Other</a>'  ;
Content += '</div>\n';

document.write(Content);
}


function companyPopup () {
  var popup = window.open("http://www.bgwebgroup.com/company_popup.htm","popup","width=325,height=325");
}