<!-- 

// Todd Butler 

// Disallow display with a frameset
if (top.location != self.location)
	top.location = self.location

function showReview(ID) {

var rev_wndw = null;
rev_wndw = window.open("http://www.toddbutlergroup.com/ToddNet/review.asp?ID=" + ID,"","width=300,height=400");
if (rev_wndw) rev_wndw.focus();
 
}

function showArticle(ID) {

var art_wndw = null;
art_wndw = window.open("http://www.toddbutlergroup.com/ToddNet/article.asp?ID=" + ID,"","width=300,height=400");
if (art_wndw) art_wndw.focus()
}

// -->  