//-----------------------------------
// Generates code of one menu item 

function CreateMenuItem(URL, Caption, Alt) { 
	var result = '<TR><TD class="clsProductCaption" nowrap>';
	if ((URL != '') && (window.location.href.indexOf('/' + URL) > -1)) 
		result +=	Caption + '<IMG src="images/arrow5x4.gif" alt="' + Alt + '" border="0" width="5" height="4">';
	else	
		result +=	'<A href="' + URL + '" title="' + Alt + '">' + Caption + '</A>';
	result += '</TD></TR>';
	return result;
}

//-----------------------------------
// Products menu

var S = '';

S += '<TABLE width="100%" border="0" cellpadding="0" cellspacing="0">'
S += '	<TR><TD><IMG src="images/1x1.gif" alt="" border="0" width="1" height="2"></TD></TR>'
S += '	<TR><TD class="clsLeftDots"><IMG src="images/1x1.gif" alt="" border="0" width="1" height="1"></TD></TR>'
S += '	<TR><TD><IMG src="images/1x1.gif" alt="" border="0" width="1" height="6"></TD></TR>'

	
S += CreateMenuItem('audio-tags-editor.shtml', 'ABF Audio Tags Editor', '');
S += CreateMenuItem('cd-blaster.shtml', 'ABF CD Blaster', '');
S += CreateMenuItem('magnifying-tools.shtml', 'ABF Magnifying Tools', '');
S += CreateMenuItem('outlook-express-backup.shtml', 'ABF OE Backup', '');
S += CreateMenuItem('outlook-backup.shtml', 'ABF Outlook Backup', '');
S += CreateMenuItem('password-recovery.shtml', 'ABF Password Recovery', '');
S += CreateMenuItem('photo-camera.shtml', 'ABF Photo Camera', '');
S += CreateMenuItem('slide-show-screen-saver.shtml', 'ABF Slide Show', '');
S += CreateMenuItem('value-converter.shtml', 'ABF Value Converter', '');
S += CreateMenuItem('wallpaper-changer.shtml', 'ABF Wallpaper Changer', '');

S += '<TR><TD><IMG src="images/1x1.gif" alt="" border="0" width="1" height="8"></TD></TR>';
S += '<TR><TD background="images/left_dot_fill.gif"><IMG src="images/1x1.gif" alt="" border="0" width="1" height="1"></TD></TR>';
S += '<TR><TD><IMG src="images/1x1.gif" alt="" border="0" width="1" height="6"></TD></TR>';

S += CreateMenuItem('screen-saver.shtml', 'ABF Screen Saver', 'Free');
S += CreateMenuItem('lens-magnifying-glass.shtml', 'Lens - magnifying glass', 'Free');



S += '	<TR><TD><IMG src="images/1x1.gif" alt="" border="0" width="1" height="8"></TD></TR>'
S += '	<TR><TD class="clsLeftDots"><IMG src="images/1x1.gif" alt="" border="0" width="1" height="1"></TD></TR>'
S += '	<TR><TD><IMG src="images/1x1.gif" alt="" border="0" width="1" height="10"></TD></TR>'
S += '	</TABLE>';

document.writeln(S);
