var section = [
{
	item: 'Main',
	href: '',
	subsection: [
		{item: 'Home', href: 'index.htm'},
		{item: 'Contact Us', href: 'contact.htm'},
		{item: 'MSDS', href: 'msds.htm'},
		{item: 'Links', href: 'links.htm'},
		{item: 'Directions', href: 'directions.htm'},
		{item: 'Credit App.', href: 'credit.htm'}
	]},
{
	item: 'Products',
	href: '',
	subsection: [
		{item: 'Diesel-Mate Fuel', href: 'dieselmate.htm'},
		{item: 'Nevastane Food Grade Lubricants', href: 'nevastane.htm'},
		{item: 'Shell Lubricants', href: 'shell.htm'}
	]}
];

function submenu(menuid)
{
	var section = document.getElementById(menuid);
	(section.style.display == 'none') ? section.style.display = '' : section.style.display = 'none';
}

function header(rootpath)
{
	if (rootpath == undefined)
		rootpath = '';
	with(document)
	{
		body.style.backgroundImage = 'url(' + rootpath + 'images/bg.gif)';
		body.style.backgroundRepeat = 'repeat-y';
		body.style.backgroundColor = '#999';
		write('<table width="100%" border="0" cellspacing="0" cellpadding="0">');
		write('<tr>');
		write('<td class=desktop width="10"><img src="' + rootpath + 'images/pixel.gif" width=10 height=10></td>');
		write('<td class=desktop width="10"><img src="' + rootpath + 'images/pixel.gif" width=10 height=10></td>');
		write('<td class=bannerext width="4"><img src="' + rootpath + 'images/pixel.gif" width=4 height=10></td>');
		write('<td class=menustrip width="119"><img width=1 height=1></td>');
		write('<td class=bannerext width="4"><img src="' + rootpath + 'images/pixel.gif" width=4 height=10></td>');
		write('<td class=desktop width="10"><img src="' + rootpath + 'images/pixel.gif" width=10 height=10></td>');
		write('<td class=desktop width="*" colspan=2><img src="' + rootpath + 'images/pixel.gif" border=0 width=10 height=10></td>');
		write('<td class=desktop width="10"><img src="' + rootpath + 'images/pixel.gif" width=10 height=10></td>');
		write('</tr>');
		write('<tr>');
		write('<td class=desktop><img width=1 height=1></td>');
		write('<td class=content valign=bottom><img src="' + rootpath + 'images/tl.gif" width=10 height=10></td>');
		write('<td class=bannerext><img width=1 height=1></td>');
		write('<td class=menustrip><img width=1 height=1></td>');
		write('<td class=bannerext><img width=1 height=1></td>');
		write('<td class=content valign=bottom><img src="' + rootpath + 'images/tr.gif" width=10 height=10></td>');
		write('<td class=content align=right colspan=2><span id=shortcut>&nbsp;<a href="' + rootpath + 'index.htm">home</a>&nbsp;|&nbsp;<a href="http://www.google.com">google</a>&nbsp;|&nbsp;<a href="mailto:finch@monsonoil.com">e-mail us</a>&nbsp;</span></td>');
		write('<td class=desktop><img width=1 height=1></td>');
		write('</tr>');
		write('<tr>');
		write('<td class=bannerstrip><img width=1 height=1></td>');
		write('<td class=bannerstrip><img width=1 height=1></td>');
		write('<td class=bannerstrip><img width=1 height=1></td>');
		write('<td class=menustrip align=middle><a href="' + rootpath + 'index.htm"><img SRC="' + rootpath + 'images/oil_drop.jpg" height=87 border=0></td>');
		write('<td class=bannerstrip><img width=1 height=1></td>');
		write('<td class=bannerstrip><img width=1 height=1></td>');
		write('<td class=bannerstrip align=right valign=center><img SRC="' + rootpath + 'images/monson_truck.jpg" height=77 border=0></td>');
		write('<td class=bannerstrip><img width=1 height=1></td>');
		write('</tr>');
		write('<tr>');
		write('<td class=desktop><img width=1 height=1></td>');
		write('<td class=content><img src="' + rootpath + 'images/bl.gif" width=10 height=10></td>');
		write('<td class=bannerext><img width=1 height=1></td>');
		write('<td class=menustrip><img width=1 height=1></td>');
		write('<td class=bannerext><img width=1 height=1></td>');
		write('<td class=content valign=top><img src="' + rootpath + 'images/br.gif" width=10 height=10></td>');
		write('<td class=content colspan=2><img width=1 height=1></td>');
		write('<td class=desktop><img width=1 height=1></td>');
		write('</tr>');
		write('<tr>');
		write('<td class=desktop><img width=1 height=1></td>');
		write('<td class=content><img width=1 height=1></td>');
		write('<td class=bannerext><img width=1 height=1></td>');
		write('<td class=menustrip valign=top>');
		write('<div style="width:111px;margin-left:4px;background-color:#ccc">');
		for(var i = 0; i < section.length; i++)
			with(section[i])
			{
				write('<div class="menusect">');
				if('' != href)
					write('<a href="' + rootpath + href + '">' + item + '</a>');
				else
					write(item);
				write('</div>');
				if(subsection.length > 0)
				{
					write('<div class="menuitem" id="sect' + i + '"><ul>');
					for(var j = 0; j < subsection.length; j++)
						with(subsection[j])
							write('<li><a href="' + rootpath + href + '">' + item + '</a></li>');
					write('</ul></div>');
				}
			}
		write('</div>');
		write('</td>');
		write('<td class=bannerext><img width=1 height=1></td>');
		write('<td class=content><img width=1 height=1></td>');
		write('<td class=content id=contentcell colspan=2 valign=top>');
	}
}

function footer(rootpath)
{
	if (rootpath == undefined)
	  rootpath = '';
	with(document)
	{
		write('</td>');
		write('<td class=desktop><img src="' + rootpath + 'images/pixel.gif" border=0 width=10 height=10></td>');
		write('</tr>');
		write('<tr>');
		write('<td class=desktop><img src="' + rootpath + 'images/pixel.gif" width=10 height=10></td>');
		write('<td class=content><img width=1 height=1></td>');
		write('<td class=bannerext><img width=1 height=1></td>');
		write('<td class=menustrip><img width=1 height=1></td>');
		write('<td class=bannerext><img width=1 height=1></td>');
		write('<td class=content><img width=1 height=1></td>');
		write('<td class=content colspan=2><center><span style="font-family:Verdana,Arial;font-size:xx-small"><br>© 2005 Monson Oil Company<br><br></span></center></td>');
		write('<td class=desktop><img width=1 height=1></td>');
		write('</td>');
		write('</tr>');
		write('<tr>');
		write('<td class=desktop><img src="' + rootpath + 'images/pixel.gif" width=10 height=10></td>');
		write('<td class=desktop><img width=1 height=1></td>');
		write('<td class=bannerext><img width=1 height=1></td>');
		write('<td class=menustrip><img width=1 height=1></td>');
		write('<td class=bannerext><img width=1 height=1></td>');
		write('<td class=desktop><img width=1 height=1></td>');
		write('<td class=desktop colspan=2><img width=1 height=1></td>');
		write('<td class=desktop><img width=1 height=1></td>');
		write('</td>');
		write('</tr>');
		write('</table>');
	}
}

function doSubmit(f)
{
	if('' != document.all.name.value)
	{
		if('' != document.all.email.value)
		{
			f.submit();
		}
		else
		{
			alert('Enter your e-mail address');
			f.email.focus();
		}
	}
	else
	{
		alert('You should introduce yourself');
		f.name.focus();
	}
}