function settitle() {
var a = "..:: Furniture Asia 2009 ~ International Exhibition & Conferences ::..  ";
var b = "..:: Furniture Asia 2009 ~ 1 - 3 August 2009 at Karachi Expo Centre - Pakistan ::..  ";
var c = "..:: Furniture Asia 2009 ~ International Woodworking Machinery & Equipment Show ::..  ";
var d = "..:: Furniture Asia 2009 ~ In conjunction with Build Asia International Housing, Real Estate, & Construction Industry Show ::..  ";
 var t = new Date();
 s = t.getSeconds();
 if (s == 5) {
 document.title = a;}
 else if (s == 15) {
 document.title = b;}
 else if (s == 25) {
 document.title = c;}
 else if (s == 35) {
 document.title = d;}
 else if (s == 45) {
 document.title = a;}
 else if (s == 55) {
 document.title = b;}
 else if (s == 00) {
 document.title = c;}
 else if (s == 5) {
 document.title = d;}
 setTimeout("settitle()", 1000);
 }


