function settitle() {
var a = "..:: ITIF Asia - International Trade & Industrial Machinery Show - Int'l Exhibition & Conference ::..  ";
var b = "..:: ITIF Asia - International Trade & Industrial Machinery Show at Karachi Expo Centre, Pakistan ::..  ";
var c = "..:: :: ITIF Asia - 287 - 29 March 2010 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);
}