function settitle() {
var a = "..:: 5th Health Asia 2009 ~ 11 - 13 March 2009 ::..";
var b = "..:: 5th Health Asia 2009 ~ at Karachi Expo Centre, Pakistan ::..";
var c = "..:: 5th Health Asia 2009 ~ The Premier Health Event of the Region ::..";
var d = "..:: 5th Health Asia 2009 ~ In corporating Pharma Asia - International Exhibition ::..";
 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);
 }

