// JavaScript Document

var faqWin = 0;
function faq(f) {
  if(faqWin) {
    if(!faqWin.closed) faqWin.close();
  }
	var URLStr = 'faq.cfm#' + f;
	theWidth = 400;
	theHeight = 300;
	theLeft = 125;
	theTop = 125;
  faqWin = open(URLStr, 'faqWin', 'toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes,copyhistory=yes,width='+theWidth+',height='+theHeight+',left='+theLeft+', top='+theTop+',screenX='+theLeft+',screenY='+theTop+'');
}
