Fetching a portion of tag with Translator Framework

I am working on this page:
http://sid.ir/en/ViewPaper.asp?ID=247419&varStr=1;TABIBIAN%20MANOUCHEHR,SHOLEH%20MAHSA;ARMANSHAHR;SPRING-SUMMER%202010;3;4;1;16

I want select "SPRING-SUMMER 2010; 3(4):1-16. " text using translator framework. Using FirePath plugin you can see that using pure xpath expression "/html/body/div/div[3]/table[2]/tbody/tr/td/text()" yield desired result but this xpath epresion will not work in framework. Actually I test followings without success.

articleTitle=doc.evaluate("/html/body/div/div[3]/table[2]/tbody/tr/td/font",doc,null, XPathResult.STRING_TYPE ,null).stringValue;

FW.Scraper({
...
date : FW.Xpath('/html/body//table[2]/tbody/tr[1]/td').text().remove(/\n/g).remove(/.*?\)/).remove(/;.*/),
date : FW.Xpath('/html/body//table[2]/tbody/tr[1]/td').text(),
date : FW.Xpath('/html/body//table[2]/tbody/tr[1]/td').text().remove(RegExp(articleTitle)).text(),
date : FW.Xpath('/html/body//table[2]/tbody/tr[1]/td').text().remove(RegExp(articleTitle)),
date: FW.Xpath("/html/body//table[2]/tbody/tr[1]/td/text()[2]").text()
date: FW.Xpath("/html/body//table[2]/tbody/tr[1]/td/text()").text()
..});

and a lot more.

Can any body write a code that just select "SPRING-SUMMER 2010; 3(4):1-16. " in that page?
This discussion has been closed.