function cqc_JSMsg() {
  this.ListPosition = 16;

this.Type = Array([this.ShortListSize]);
this.Desc = Array([this.ShortListSize]);
this.Body = Array([this.ShortListSize]);
this.Attrib = Array([this.ShortListSize]);


 this.ShortListSize = 16;
 this.BeenLoaded = 0;
 this.dispNumb;

 this.Msg = function(msgPart, msgOffset)
 {
    document.write( this.Get(msgPart, msgOffset) );
 }

 this.MsgDay = function(msgPart)
 {
    document.write( this.GetDay(msgPart) );
 }

 this.MsgN = function(msgPart, msgNumber)
 {
    document.write( this.GetN(msgPart, msgNumber) );
 }


 this.Get = function(msgPart, msgOffset)
 {
    if(!msgOffset) {
        msgOffset = 0;
    }
    if(!this.BeenLoaded) {
        this.BeenLoaded = 1;
        dispNumb = 
           this.getRandInt(this.ShortListSize);
    }
    return( this.GetN(msgPart, (dispNumb + msgOffset)) );
 }

 this.GetDay = function(msgPart)
 {
    var d = new Date();
    var x = d.getDate();
    return( this.GetN(msgPart, x) );
 }



 this.GetN = function(msgPart, msgNumber)
 {
    return( this.ChkShowroom( this.GetNCore(msgPart, msgNumber) ) );
 }

 this.GetNCore = function(msgPart, msgNumber)
 {
    var myTmp;

    if(!msgPart) {
        msgPart = "Body";
    }
    if(!msgNumber) {
        msgNumber = 0;
    }

    if(msgNumber >= this.ShortListSize) {
        msgNumber = msgNumber % this.ShortListSize;
    }

    if(  this.ok(msgPart,"Type") ) {
        return(this.Type[msgNumber]);
    }
    if(  this.ok(msgPart,"Title") ) {
        return(this.Title[msgNumber]);
    }
    if(  this.ok(msgPart, "Desc Description Content") ) {
        return(this.Desc[msgNumber]);
    }
    if(  this.ok(msgPart,"Body") ) {
        return(this.Body[msgNumber]);
    }
    if(  this.ok(msgPart, "Attrib Attribute Source") ) {
        return(this.Attrib[msgNumber]);
    }
    if(  this.ok(msgPart, "Author") ) {
        if(!this.Author[msgNumber]) {
            return(this.Attrib[msgNumber]);
        }
        return(this.Author[msgNumber]);
    }

    if(  this.ok(msgPart,"DayN Day2N Day") ) {
        myTmp = this.DateN[msgNumber];
        if(myTmp.length) { 
          myTmp = myTmp.substr(6,2);
          if(  this.ok(msgPart,"Day2N") ) {
            return(myTmp);
          }
          if(myTmp.charAt(0) == "0") {
            return(myTmp.substr(1,1))
          }
          return(myTmp);
        }
    }
    if(  this.ok(msgPart, "MonthN Month2N") ) {
        myTmp = this.DateN[msgNumber];
        if(myTmp.length) {
          myTmp = myTmp.substr(4,2)
          if(  this.ok(msgPart,"Month2N") ) {
            return(myTmp);
          }
          if(myTmp.charAt(0) == "0") {
            return(myTmp.substr(1,1))
          }
          return(myTmp);
        }
    }
    if(  this.ok(msgPart, "Year2N Year4N YearN Year") ) {
        if(this.DateN[msgNumber].length) {
          if(  this.ok(msgPart,"Year4N") ) {
            return(this.DateN[msgNumber].substr(0,4));
          }
          return(this.DateN[msgNumber].substr(0,4));
        }
    }

    if(  this.ok(msgPart,"Link") ) {
        return(this.Link[msgNumber]);
    }
    if( this.ok(msgPart,"LinkTitle") ) {
        if(this.MetaMsg(msgPart,"Link") && this.MetaMsg(msgPart,"Title") ) {
          if( !this.Link[msgNumber] ) {
              return(this.Title[msgNumber]);
          }

          if( !this.Title[msgNumber] ) {
            this.Title[msgNumber] =  this.Link[msgNumber];              
          }
          myTmp = '<A TARGET="_blank" \n'; 
          myTmp = myTmp + 'HREF="' + this.Link[msgNumber] + '">\n';
          myTmp = myTmp + this.Title[msgNumber] + '</A>\n';

          return(myTmp);

        }
        if( this.MetaMsg(msgPart,"Title") ) {
          return(this.Title[msgNumber]);
        }
        if( this.MetaMsg(msgPart,"Link") ) {
          if( this.Link[msgNumber] ) {
            myTmp = "<A TARGET=\"_blank\" \n"; 
            myTmp = myTmp + "HREF=\"" + this.Link[msgNumber] + "\">\n";
            myTmp = myTmp + this.Link[msgNumber] + "</A>\n";
            return(myTmp);
          }
        }
        return("");
    }
    if( this.ok(msgPart,"Cat Category Subject") ) {
        return(this.Cat[msgNumber]);
    }
    if( this.ok(msgPart,"Thumb") ) {
        return(this.Thumb[msgNumber]);
    }
    if( this.ok(msgPart,"Alt") ) {
        return(this.Alt[msgNumber]);
    }

    return("");
 }




 this.getRandInt = function(RandSz)
 {
    var t, t2, t3;

    t = 0;
    while(t < .000001) {
        t = Math.random();
        t = Math.abs(t);
    }
    t2 = t * 1000000;
    t2 = Math.round(t2);
    t3 = t2 % RandSz;
    return(t3);
 }



 this.ok = function(a, b)
 {
    var t, t2;

    if(!this.is(a,b)) {
        return(0);
    }
    return(this.MetaMsg(a));
 }

 this.is = function(a, b)
 {
    var t, t2;

    t = a + " ";
    t2 = b + " ";
    t2 = t2.toUpperCase();
    t = t.toUpperCase();

    if(t2.indexOf(t) == -1) {
        return(0);
    }
    return(1);
 }


 this.MetaMsg = function(msgCmd)
 {
    if( this.is(msgCmd, "Type Desc Description Body Attrib Source ") ) {
         return(1);

    }
    else if( this.is(msgCmd, "MetaCount") ) {
        return(30);
    }
    else {
        return(0);
    }
 }


 this.ChkShowroom = function(insideMsg)
 {
    var rv;

    

    if( (self.location.href.search(/http\:\/\/www\.creativyst/i) == -1)     &&      // us
        (self.location.href.search(/http\:\/\/216\.*/i) == -1)                      // Google cache
                                                                       ) {
       // rv = "<A TARGET=\"_blank\" HREF=\"http://www.creativyst.com/Prod/14/\">";
        rv = insideMsg;
       // rv += "</A>";z
        return(rv);
    }
    return(insideMsg);

 }


}

cqc = new cqc_JSMsg();

/* how slow is the with statement */

with( cqc ) {
Type[0] = "Quote";
Body[0] = "<b>Testimonial from Kim, USA</b><br><br><div align=justify>Naveen,I just wanted to take a brief moment of your time and tell you how much I appreciate your services. You have developed two websites for me and the communication we have had regarding those websites has been fantastic. You have listened to all my comments and changes as the sites were developed and have really come through for me and my business needs. I highly recommend your services to all entrepreneurs as a business you can trust and use for all your website needs at more than a fair price. Your team has spent alot of time with me working on all the small details and I truly appreciate that professionalism. I look forward to our continued relationship</div>";
Attrib[0] = "Sincerely,<br><b>Kim Shindler</b><br>World Entrepreneurs Club<br><a href=\"http://www.worldentrepreneursclub.com\">www.worldentrepreneursclub.com</a>";

Type[1] = "Quote";
Body[1] = "<b>Testimonial from Jeff Mills, USA</b><br><br><div align=justify>I wanted to get my websites positioned in front of many people online, and did not know who to select to get the job done. As I priced out many companies in the USA, I found them way overpriced, but Alps had the right price. Since using Alps, they have created numerous project and sites for me and we have gained over 17 #1 listings in various search engines, and the traffic keeps pouring in. I have referred many of my friends to Alps, because they are fast, efficient, and easy to work with.</div>";
Attrib[1] = "<b>Jeff Mills</b><br>&nbsp;<a href=\"http://www.coastal-vacation-club.com\">www.coastal-vacation-club.com</a>";

Type[2] = "Quote";
Body[2] = "<b>Testimonial from George Price, USA</b><br><br><div align=justify>Alps Software is the greatest website development company that I have ever worked with. They have truly met all of my expectations in the develpment of my websites and more. There attention to detail and customer service are unparalled in the industry. Anyone who chooses to use Alps Software for there web development needs will be glad that they did!</div>";
Attrib[2] = "<b>George Price/CEO</b><br>Coastal Video Tours<br><a href=\"http://www.coastalvideotours.com\">www.coastalvideotours.com</a>";

Type[3] = "Quote";
Body[3] = "<b>Testimonial from Matt Peck, USA</b><br><br><div align=justify>The people at alps software did a good job for me.  I never even spoke to them as it was all conveyed through IM's.   They seem to know what they are doing.</div>";
Attrib[3] = "<b>Matt Peck</b><br><a href=\"http://www.coastalmillions.us\">www.coastalmillions.us</a>";

Type[4] = "Quote";
Body[4] = "<b>Testimonial from Barry Greenberg, USA</b><br><br><div align=justify>Alps Software Solution has proven to be a very honest, reliable and talented website developement company.  It is with great pleasure that I have the opportunity to recommend their services.  Naveen Gorky was very professional and followed through with completing my website improvements in a timely manner, as requested.  I recommend them highly.</div>";
Attrib[4] = "<b>Barry Greenberg</b>, Vice President<br>Wellnessseminars, Inc.<br><a href=\"http://www.Easywillpower.com\">www.Easywillpower.com</a>";

Type[5] = "Quote";
Body[5] = "<b>Testimonial from Aubrey Nigoza, USA</b><br><br><div align=justify>Working with alpssoftware is great. You give them what you want and they’ll get it done fast. The quality of their work is amazing. Thank you all.</div>";
Attrib[5] = "<b>Aubrey Nigoza</b><br>Computer FAQ’s Representative<br><a href=\"http://www.computerfaqs.biz\">www.computerfaqs.biz</a>";

Type[6] = "Quote";
Body[6] = "<b>Testimonial from Al Tokel, USA</b><br><br><div align=justify>Naveen and other AlpsSoftware staff were very helpful in accomplishing our goal. They were accessible throughout the process. They price they services competitively and follow through as promised. I am satisfied with the work they have done for us and I would not hesitate to use their services again.</div>";
Attrib[6] = "<b>Al Tokel</b><br><a href=\"http://www.neopromo.com\">www.neopromo.com</a>";

Type[7] = "Quote";
Body[7] = "<b>Testimonial from Eric Frier, USA</b><br><br><div align=justify>I just want to thank you all at Alps Software for the work you did on reelcinemahome.com. Not only was your pricing considerably more competitive than local web designers, your communications and rapid response to the tasks have been superior. I was concerned at first about doing business with such a remote organization as one in India; however, you have proved to be a better relationship than one I could have with a company just down the street.</div>";
Attrib[7] = "Thanks again.<br><b>Eric Frier</b><br>President and Founder,<br>ReelCinema, Incorporated.<br><a href=\"http://www.reelcinemahome.com\">www.reelcinemahome.com</a>";

Type[8] = "Quote";
Body[8] = "<b>Testimonial from Joseph Edwards, USA</b><br><br><div align=justify>I just want to take a few moments to commend you and your developer team on the work that you have done for my company.  Quite simply, the work has far exceeded my expectations, both with regard to quality and clarity, and to the way you consistently responded to my inquiries and suggestions, effectively involving me in the development process.  I told you what I wanted and you gave it to me, precisely on budget and within a remarkably reasonable time.  I especially appreciated the way you and the team responded to bug reports and fixed them immediately.  I am delighted that I found you, and I look forward to a profitable relationship for both of us in the years to come.</div>";
Attrib[8] = "<b>Joseph Edwards,</b><br>ReadMore Systems, Incorporated<br><a href=\"http://www.readmoresystems.com\">www.readmoresystems.com</a>";


Type[9] = "Quote";
Body[9] = "<b>Testimonial from Pam Bennett, USA</b><br><br><div align=justify>Naveen-Your programming team is by far the BEST we have ever worked with. Not only did you deliver on time, but you exceeded our expectations. You were always available for questions, and i also received daily updates. The entire project has been so smooth. I have used other programmers in the past only to be disappointed. I can now say I have a professional programming team that I will use for ALL projects, and that team is Alpssoftware!</div>";
Attrib[9] = "Thank you again for a terrific job!<br><b>Pam Bennett,</b><br><a href=\"http://www.PamBennettOnline.com\">www.PamBennettOnline.com</a>";

Type[10] = "Quote";
Body[10] = "<b>Testimonial from Daryn Zack</b><br><br><div align=justify>I would like to give a special thanx to Naveen and Alps software for building me the most awesome website ever and also i would like to thank them for there patience with me as well.... </div>";
Attrib[10] = "<b>Daryn Zack,</b><br><a href=\"http://www.universityofcash.com\">www.universityofcash.com</a>";

Type[11] = "Quote";
Body[11] = "<b>Testimonial from Jeff Mills</b><br><br><div align=justify>This was the most rewarding relationship, as they totally understood my project and new exactly how to solve my problem and do it quickly. This professional team worked so close with me, I felt like they were family. Many IM conversations to get the project completed. Always willing to go beyond duty and show me the extra Mile. I would give them 5 stars and continue to use them for ALL my website projects.</div>";
Attrib[11] = "<b>Jeff Mills,</b><br>Gold Mills Marketing LLC<br>USA<br><a href=\"http://www.coastal-vacations-club.com\">www.coastal-vacations-club.com</a>";

Type[12] = "Quote";
Body[12] = "<b>Testimonial from George Price</b><br><br><div align=justify>My experience with Naveen Gorky and Alps Software has been great! They truly put out great products for a reasonable price. I recommend everyone use Alps Software for all of there Web needs!!!!</div>";
Attrib[12] = "<b>Dr. George S.Price, lll,</b><br>Precio LLC<br><a href=\"http://www.preciollc.net\">www.preciollc.net</a>";

Type[13] = "Quote";
Body[13] = "<b>Testimonial from Bent Porsborg, Venezuela</b><br><br><div align=justify>Excellent service and quick response despite distance from Venezuela to India. I highly recommend Alpssoftware.</div>";
Attrib[13] = "Saludos<br><b>Bent Porsborg,</b><br>Venezuela<br><a href=\"http://www.lionoxhead.com\">www.lionoxhead.com</a>";

Type[14] = "Quote";
Body[14] = "<b>Testimonial from Kevin</b><br><br><div align=justify>Naveen, thank you for a great website is such a short period of time. The graphics and flash portions were perfect. This is the best and quickest return on my investment I have ever made. Thank you.</div>";
Attrib[14] = "<b>Dr. Kevin Campbell,</b><br><a href=\"http://www.retirewithkevin.com\">www.retirewithkevin.com</a>";

Type[15] = "Quote";
Body[15] = "<b>Testimonial from Matt & Bill</b><br><br><div align=justify>In my years of doing business I have found that it can be very difficult to find a company who is passionate about meeting the needs of their clients.  Alps software is one of those rare companies.  Although, it may have taken several attempts to achieve the end product, they were very diligent in working through all the kinks.  If you are skeptical about using this company simply look at the finished product. Check out the website they put together for us at www.whoarethewebsters.com.  The website speaks volumes of their talent and creativity.</div>";
Attrib[15] = "<b>Matt & Bill</b> Webster of<a href=\"http://www.whoarethewebsters.com\"> www.whoarethewebsters.com</a>";


} // end with block


