//begin_lib
<!-- This document created by WebScripter 3.0 copyright Code Generation 1999 -->


var msg = "                                           "  ;
msg += "        CALL 720-276-9127              "   ;
msg += "      CALL 720-276-9127              "   ;
msg += "           CALL 720-276-9127  FOR A QUOTE         "  ;
msg += "          OR email us at           ";
msg += "          Info3@GoldenGateGraphics.com          ";
var delay = 50;
var timerID;
var m = 2*msg.length;
var c = 0;
function Scroll(){
    window.status = msg;
    c++
    if(c < m){
    msg = msg.substring(1,msg.length)+msg.substring(0,1);
    timerID = setTimeout("Scroll()",delay);
    }else{
    timerID = 0;
    window.status = "";
    return;
    }
}

function LoadFunctions(){
Scroll();
}
var popWin
function Popup(URL, NAME)
{
popWin = window.open(URL,NAME,'toolbar=0,location=0,menubar=0,scrollbars=1,resizable=1,width=750,height=550');
popWin.focus();
}
function Popup2(URL, NAME)
{
popWin = window.open(URL,NAME,'toolbar=0,location=0,menubar=0,scrollbars=1,resizable=1,width=650,height=50');
popWin.focus();
}

//end_lib
