
<!-- hide javascript
function scrollmessage(count) {

var m1 = "Welcome to International Consultants and Contractors Association of Iran's Official Website";
var m2 = "       This site is sponsered by ";
var m3 = "Managing and Planning Organization of Iran";
var m4 = "....";
var msg=m1+m2+m3+m4;
var out = " ";
var c = 1;

if (count > 100) {
   count--;
   cmd="scrollmessage("+seed+")";
   timerTwo=window.setTimeout(cmd,100);
   }

else if (count <= 100 && count > 0) {
   for (c=0 ; c < count ; c++) {
      out+=" ";
      }
   out+=msg;
   count--;
   window.status=out;
   cmd="scrollmessage("+count+")";
   timerTwo=window.setTimeout(cmd,100);
   }

else if (count <= 0) {
   if (-count < msg.length) {
      out+=msg.substring(-count,msg.length);
      count--;
      window.status=out;
      cmd="scrollmessage("+count+")";
      timerTwo=window.setTimeout(cmd,100);
      }
   else {
      window.status=" ";
      timerTwo=window.setTimeout("scrollmessage(100)",75);
      }
   }

}

// done hiding -->



