	function makeArray(len) {
	    for (var i = 0; i < len; i++) this[i] = null;
	this.length = len;
	}

	quote = new makeArray(3);
	quote[0] = "<em>Stylin' Pets really takes care of our pets. We are very comfortable when we leave them to be groomed. We know they will receive the best care possible. They always look great and very happy when they greet us. We know they like our dogs and we love that they know them by name when we go in.</em> <p><b> - Cindy Lane</b></p>"
	quote[1] = "<em>I have loved taking my dogs to Stylin' Pets. It is so convenient when being downtown to drop your dogs off. They are very customer oriented. Lisa is willing to work around my schedule and fit me in right away. Everyone is friendly and I know my dogs are getting the best of care.</em> <p><b> - Jan Mijares</b></p>"
	quote[2] = "<em>We take Barstow to Stylin' Pets because they really treat him great and do such an excellent job grooming. They have been very accommodating with our schedule and have been willing to rearrange things at the last minute.</em>"

	function rand(n) {
	seed = (0x015a4e35 * seed) % 0x7fffffff;
	return (seed >> 16) % n;
	}
        
	var now = new Date()
	var seed = now.getTime() % 0xffffffff
	
	function openwindow(page)
      {
OpenWindow=window.open(page, "newwin", "height=400, width=450,toolbar=no,scrollbars="+scroll+",menubar=no");
self.name="main";
return false;

     }