function settitle() {
var a = "..:: ITIF Asia International Trade & Industrial Machinery Show ::..  ";
var b = "..:: ITIF Asia Industrial Machinery Exhibition at Karachi Expo Centre, Pakistan ::..  ";
var c = "..:: ITIF Asia at Karachi Expo Centre, Pakistan ::..  ";

var t = new Date();
s = t.getSeconds();

if (s == 10) {
  document.title = a;}
 else if (s == 20) {
 document.title = b;}
 else if (s == 30) {
 document.title = c;}
 else if (s == 40) {
 document.title = a;}
 else if (s == 50) {
 document.title = b;}
 else if (s == 00) {
 document.title = c;}
 setTimeout("settitle()", 1000);
}
