function helpwindowGo(id,base,questionid){
	var thispage="http://paulb.newnetfriends.com/popups/helpwindowframe.cfm?topicid=" + id + "&faq=" + base + "&helpid=" + base + "&questionid=" + questionid;
	var thiswindow='ifaq';
	if (document.all) {
		windowheight = screen.availHeight;
		rightwidth=230;
		leftwidth=screen.availWidth-rightwidth-11;

		var options="width="+rightwidth+",height="+(windowheight-51)+",screenX="+leftwidth+",screenY=0,top=0,left=" +leftwidth+",toolbar=0,location=0,status=1,menubar=0,resizable=1";

		helpwindow=window.open(thispage,thiswindow,options);
		helpwindow.focus();
	} else {
		helpwindow=window.open(thispage,thiswindow,'width=190,height=480,toolbar=0,location=0,status=1,menubar=0,resizable=1');
	}
}