// Status bar Scrolling
function scrollit(seed) 
{
var m1  = "";
var m2  = "One Company, ";
var m3  = " Many Solutions.";
var m4  = " ";

var msg=m1+m2+m3+m4;
var out = " Perfect Solutions :  ";
var c   = 1;
if (seed > 100)
 {
seed--;
cmd="scrollit("+seed+")";
timerTwo=window.setTimeout(cmd,100);
}
else if (seed <= 100 && seed > 0) {
for (c=0 ; c < seed ; c++) {
out+=" ";
}
out+=msg;
seed--;
window.status=out;
cmd="scrollit("+seed+")";
timerTwo=window.setTimeout(cmd,100);
}
else if (seed <= 0) {
if (-seed < msg.length) {
out+=msg.substring(-seed,msg.length);
seed--;
window.status=out;
cmd="scrollit("+seed+")";
timerTwo=window.setTimeout(cmd,100);
}
else {
window.status=" ";
timerTwo=window.setTimeout("scrollit(100)",75);
      }
   }
}



//disable right click
am = "Copyright : Perfect Solutions";

bV  = parseInt(navigator.appVersion)
bNS = navigator.appName=="Netscape"
bIE = navigator.appName=="Microsoft Internet Explorer"

function nrc(e) 
{
   if (bNS && e.which > 1)
	{
    	alert(am);
      	return false;
  	 }
     else if (bIE && (event.button >1)) 
	{
	alert(am);
	 return false;
	   }
 
}

document.onmousedown = nrc;
if (document.layers) window.captureEvents(Event.MOUSEDOWN);
if (bNS && bV<5) window.onmousedown = nrc;

//end disable right click

//-->

//-->