<!-- 
var Message="  V R S  &  Y R N  C O L L E G E  O F  E N G I N E E R I N G  & T E C H N O L O G Y ,   C H I R A L A - 5 2 3 1 5 7 . . . . ";
var place=1;
scrollIn();
function scrollIn()
 {

window.status=Message.substring(0, place);
if (place >= Message.length) 
{
place=1;
window.setTimeout("scrollOut()",300); 
}
else 
{
place++;
window.setTimeout("scrollIn()",50); 
} 
}

function scrollOut() 
{
window.status=Message.substring(place, Message.length);
if (place >= Message.length) 
{
place=1;
window.setTimeout("scrollIn()", 100);
}
else
{
place++;
window.setTimeout("scrollOut()", 50);
}

}
-->