function settitle() {
var a = "..:: Plastic, Packaging & Print Asia ~ 11 - 13 March 2009 ::..";
var b = "..:: Plastic, Packaging & Print Asia - at Karachi Expo Centre, Pakistan ::..";
var c = "..:: Plastic, Packaging & Print Asia - 4th Plastic, Packaging & Print Technology Show ::..";
 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);
 }

