// JavaScript Document

function popup(url)
{
        newwindow=window.open(url,'name','toolbar=0,scrollbars=1,location=0,statusbar=0,menubar=0,resizable=0, top=150, left=140, height=600,width=400');
        if (window.focus) {newwindow.focus()}
        return false;
}

function popup1(url)
{
        newwindow=window.open(url,'name','toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=0, top=150, left=140, height=350,width=380');
        if (window.focus) {newwindow.focus()}
        return false;
}

function popup2(url)
{
        newwindow=window.open(url,'name','toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=0, top=150, left=140, height=350,width=380');
        if (window.focus) {newwindow.focus()}
        return false;
}

var msg="  Welcome to RENA SHAGAN ASSOCIATES, INC !  ";
var place=1;
function scrollIn(){
window.status=msg.substring(0, place);
if (place >= msg.length){place=1;
window.setTimeout("scrollOut()",300)}
else{place++;window.setTimeout("scrollIn()",100)}}
function scrollOut(){
window.status=msg.substring(place, msg.length);
if (place >= msg.length){place=1;
window.setTimeout("scrollIn()", 100)}
else{place++;window.setTimeout("scrollOut()", 100)}}
scrollIn();