<!-- // Start of AdSubtract JavaScript block; you can ignore this.
     // It is used when AdSubtract blocks cookies or pop-up windows.
document.iMokie = "cookie blocked by AdSubtract";
document.iMferrer = "referrer blocked by AdSubtract";
function iMwin() {
	this.location = "";
	this.frames = new Array(9);
	this.frames[0] = this;
	this.frames[1] = this;
	this.frames[2] = this;
	this.frames[3] = this;
	this.frames[4] = this;
	this.frames[5] = this;
	this.frames[6] = this;
	this.frames[7] = this;
	this.frames[8] = this;
	this.length = 0;
}
// End of AdSubtract JavaScript block. -->
/*
|-------------------------------------------|
|Title: "Open-In-Frames Javascript Solution"|
|Written By: Adam Eshleman                  |
|Date: 9/2/04                                |
|Copyright: Gannett Fleming                 |
|-------------------------------------------|
This is one of the three necessary files you need to have in place on your website
to have the "Open-In-Frames Javascript Solution" to function. The complete list of files
is as follows:

1. frame-it.js
2. allow-list.js
3. search-links.htm

The configuration of these files is as follows:

1.  Make sure all three files are located in the root of your website.

2.  The page with the links you want to affect should look something like this.
	(*'s represent the lines of code you need to place)

	<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
	<html>
	<head>
	<title>Untitled Document</title>
	<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
****<script language="JavaScript" src="allow-list.js"></script>****
****<script language="JavaScript" src="frame-it.js"></script>****
	</head>
****<body onLoad=CaptureLinkAlternate()>****
-----------------------------------------------------------------------------
*/

var MyAllowList = new Array()

//allow-list.js contains your list of allowed pages that can show up 
//without frames. If you need to add anymore just follow the pattern.

MyAllowList[0] = ""
MyAllowList[1] = ""
MyAllowList[2] = ""
MyAllowList[3] = ""

var MyDisableList = new Array()

//allow-list.js contains your list of allowed pages that can show up 
//without frames. If you need to add anymore just follow the pattern.

MyDisableList[0] = "searchresults.asp"
MyDisableList[1] = "SearchPage.aspx"


