function commentLink(linkType)
{
var the_url = location.href;
var lead_slashes = the_url.indexOf("//");
var domain_start = lead_slashes + 2;
var without_resource = the_url.substring(domain_start, the_url.length);
var next_slash = without_resource.indexOf("/");
var without_domain = without_resource.substring(next_slash, the_url.length);


var myname = linkType;
var mypage = "http://www.reynoldsindustries.com/comments/" + linkType + ".asp?page=" + without_domain;
NewWindow(mypage, myname);
}

function NewWindow(mypage, myname) {
var winl = (screen.width - 425) / 2;
var wint = (screen.height - 500) / 2;
winprops = 'height=500,width=425,top='+wint+',left='+winl+',scrollbars=yes,resizable'
win = window.open(mypage, myname, winprops)
if (parseInt(navigator.appVersion) >= 4) { win.window.focus(); }
}