<!--
function menuOption(str, label, fullpath) {	
	var file = String(str).toLowerCase();
	var path = String(window.location).toLowerCase();
	var idx = file.lastIndexOf("/");
	if (idx > 0)
		file = file.substring(idx, file.length - 1);
	if (fullpath == 0) {
		idx = file.indexOf("?");
		if (idx > 0)
			file = file.substring(0, idx - 1);
	}
	var input_size = ((navigator.appName == "Netscape") ? "7" : "11");
	var line = "<td align=\"right\" valign=\"top\" colspan=\"2\">";
//	alert("Option \"" + file + "\"\nUrl \"" + path + "\"?\n\nUse fullpath \"" + String(fullpath) + "\"");

	idx = path.indexOf(file)
	if (idx >= 0)
		line += "\n\t<img src=\"/Templates/Images/left_gif.gif\" width=\"12\" height=\"15\" border=\"0\" alt=\"Selected\">";
	else
		line += "\n\t<img src=\"/Image/spacer.gif\" width=\"1\" height=\"15\" border=\"0\">";
	line += "\n</td>";
	line += "\n<td valign=\"middle\" colspan=\"2\">";
	line += "\n\t<a href=\"" + str + "\" class=\"captact\">" + label + "</a>";
	line += "\n</td>";
	document.writeln(line);
}

function addAgency() {
	popupSized('../Editorial/submit1_form.asp', 'editorial', 707, 535);
}

function pressReleases() {
	popupSized('http://www.lexisnexis.com/about/releases/0890.asp', 'press', 800, 500);
}

function popupSized(location, winname, popupwidth, popupheight) {
	var winattribs = 'toolbar=no, location=yes, directories=no, status=yes, ';
	winattribs += 'menubar=yes, resizable=yes, copyhistory=no, scrollbars=yes, ';
	winattribs += 'width=' + popupwidth + ', height=' + popupheight;
	window.open(location, winname, winattribs);
}

//-->
  
