WHOIS Service

grizzliesbrand.com - information about domain

  • Server Status: available
  • Server IP: 66.39.38.167
  • Server Response Time: 174ms

Site title

Wildtime

Alexa information

Alexa rank: not in database

Rank Trend

Bounce Trend

DNS Information

Host: Class: Type: IP: TTL: Target: Other:
grizzliesbrand.com IN MX 3600 grizzliesbrand.com.inbound10.mxlogic.net pri: 10
grizzliesbrand.com IN MX 3600 grizzliesbrand.com.inbound10.mxlogicmx.net pri: 10
grizzliesbrand.com IN A 66.39.38.167 3600
grizzliesbrand.com IN SOA 3600 mname: ns23.domaincontrol.com
rname: dns.jomax.net
serial: 2010120100
refresh: 28800
retry: 7200
expire: 604800
minimum-ttl: 3600
grizzliesbrand.com IN NS 3600 ns24.domaincontrol.com
grizzliesbrand.com IN NS 3600 ns23.domaincontrol.com

Server Location

Site source

Show / hide source
                
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<script language="javascript" type="text/javascript" src="http://www.wildtime.com/lib/common/cms_initialize.js"></script> <script language="javascript" type="text/javascript" src="http://www.wildtime.com/lib/common/cms_macromedia.js"></script> <script language="javascript" type="text/javascript" src="http://www.wildtime.com/lib/common/jah.js"></script> <script type="text/javascript"> <!--         
        // remote scripting library
        // (c) copyright 2005 modernmethod, inc
        var sajax_debug_mode = false;
        var sajax_request_type = "GET";
        var sajax_target_id = "";
        var sajax_failure_redirect = "";
        
        function sajax_debug(text) {
            if (sajax_debug_mode)
                alert(text);
        }
        
         function sajax_init_object() {
             sajax_debug("sajax_init_object() called..")
             
             var A;
             
             var msxmlhttp = new Array(
                'Msxml2.XMLHTTP.5.0',
                'Msxml2.XMLHTTP.4.0',
                'Msxml2.XMLHTTP.3.0',
                'Msxml2.XMLHTTP',
                'Microsoft.XMLHTTP');
            for (var i = 0; i < msxmlhttp.length; i++) {
                try {
                    A = new ActiveXObject(msxmlhttp[i]);
                } catch (e) {
                    A = null;
                }
            }
             
            if(!A && typeof XMLHttpRequest != "undefined")
                A = new XMLHttpRequest();
            if (!A)
                sajax_debug("Could not create connection object.");
            return A;
        }
        
        var sajax_requests = new Array();
        
        function sajax_cancel() {
            for (var i = 0; i < sajax_requests.length; i++) 
                sajax_requests[i].abort();
        }
        
        function sajax_do_call(func_name, args) {
            var i, x, n;
            var uri;
            var post_data;
            var target_id;
            
            sajax_debug("in sajax_do_call().." + sajax_request_type + "/" + sajax_target_id);
            target_id = sajax_target_id;
            if (typeof(sajax_request_type) == "undefined" || sajax_request_type == "") 
                sajax_request_type = "GET";
            
            uri = "http://www.wildtime.com";
            if (sajax_request_type == "GET") {
            
                if (uri.indexOf("?") == -1) 
                    uri += "?rs=" + escape(func_name);
                else
                    uri += "&rs=" + escape(func_name);
                uri += "&rst=" + escape(sajax_target_id);
                uri += "&rsrnd=" + new Date().getTime();
                
                for (i = 0; i < args.length-1; i++) 
                    uri += "&rsargs[]=" + escape(args[i]);

                post_data = null;
            } 
            else if (sajax_request_type == "POST") {
                post_data = "rs=" + escape(func_name);
                post_data += "&rst=" + escape(sajax_target_id);
                post_data += "&rsrnd=" + new Date().getTime();
                
                for (i = 0; i < args.length-1; i++) 
                    post_data = post_data + "&rsargs[]=" + escape(args[i]);
            }
            else {
                alert("Illegal request type: " + sajax_request_type);
            }
            
            x = sajax_init_object();
            if (x == null) {
                if (sajax_failure_redirect != "") {
                    location.href = sajax_failure_redirect;
                    return false;
                } else {
                    sajax_debug("NULL sajax object for user agent:\n" + navigator.userAgent);
                    return false;
                }
            } else {
                x.open(sajax_request_type, uri, true);
                // window.open(uri);
                
                sajax_requests[sajax_requests.length] = x;
                
                if (sajax_request_type == "POST") {
                    x.setRequestHeader("Method", "POST " + uri + " HTTP/1.1");
                    x.setRequestHeader("Content-Type", "application/x-www-form-urlencoded");
                }
            
                x.onreadystatechange = function() {
                    if (x.readyState != 4) 
                        return;

                    sajax_debug("received " + x.responseText);
                
                    var status;
                    var data;
                    var txt = x.responseText.replace(/^\s*|\s*$/g,"");
                    status = txt.charAt(0);
                    data = txt.substring(2);

                    if (status == "") {
                        // let's just assume this is a pre-response bailout and let it slide for now
                    } else if (status == "-") 
                        alert("Error: " + data);
                    else {
                        if (target_id != "") 
                            document.getElementById(target_id).innerHTML = eval(data);
                        else {
                            try {
                                var callback;
                                var extra_data = false;
                                if (typeof args[args.length-1] == "object") {
                                    callback = args[args.length-1].callback;
                                    extra_data = args[args.length-1].extra_data;
                                } else {
                                    callback = args[args.length-1];
                                }
                                callback(eval(data), extra_data);
                            } catch (e) {
                                sajax_debug("Caught error " + e + ": Could not eval " + data );
                            }
                        }
                    }
                }
            }
            
            sajax_debug(func_name + " uri = " + uri + "/post = " + post_data);
            x.send(post_data);
            sajax_debug(func_name + " waiting..");
            delete x;
            return true;
        }
        
                
        // wrapper for ajax_public_send_pdf        
        function x_ajax_public_send_pdf() {
            sajax_do_call("ajax_public_send_pdf",
                x_ajax_public_send_pdf.arguments);
        }
        
        var SITE_URL = 'http://www.wildtime.com';
--> </script> <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" /> <title>Wildtime</title> <link href="http://www.wildtime.com/styles-reset.css" rel="stylesheet" type="text/css" /> <link href="http://www.wildtime.com/styles.css" rel="stylesheet" type="text/css" />     </head>

<body>
<table border="0" align="center" cellpadding="0" cellspacing="0" width="780">
  <tr>
    <td colspan="2" rowspan="4" valign="top" style="background-image:url(http://www.wildtime.com/images/menu-bg.gif); background-repeat:repeat-y;">
    
    
    <table width="100%" height="100%" border="0" cellpadding="0" cellspacing="0">
    
        <tr>
          <td colspan="2" style="height: 73px;"><a href="http://www.wildtime.com"><img src="http://www.wildtime.com/images/wildtime-foods-logo.gif" alt="Wildtime Foods Logo" width="232" height="73" border="0" /></a></td>
        </tr>
        
        <tr>
          <td style="height: 122px;"><img src="http://www.wildtime.com/images/spacer.gif" alt="Spacer" width="32" /></td>
          <td bgcolor="#6DA1EF" style="padding-bottom:10px;"><a href="http://www.wildtime.com"><img src="http://www.wildtime.com/images/grizzles-brand-logo.gif" alt="Grizzlies Brand Logo" width="199" height="122" border="0" /></a></td>
        </tr>
        
        <tr>
          <td></td>
          <td align="center" valign="top" bgcolor="#6DA1EF">
          
          <table width="100%" height="100" border="0" cellpadding="0" cellspacing="0">
          
              <tr>
                  <td align="left" valign="top" class="menu" style="padding: 4px 20px 10px 20px; font-size: 14px;"><em>For those who demand exceptional quality and taste, Wildtime Foods is the natural choice.</em><br />
<a href="http://www.facebook.com/pages/manage/#!/pages/Eugene-OR/Grizzlies-Brand/130469510323938" target="_blank"><img src="http://www.wildtime.com/images/FaceBook-24x24.png" width="24" height="24" alt="FaceBook" border="0" style="margin-top: 5px;" /></a>&nbsp;&nbsp;<a href="https://twitter.com/GrizzliesBrand" target="_blank"><img src="http://www.wildtime.com/images/Twitter-24x24.png" width="24" height="24" alt="Twitter" border="0" style="margin-top: 5px;" /></a></td>
              </tr>
              <tr>                 <td align="left" valign="top" class="menu" style="padding: 4px 0px 6px 20px;"><a href="http://www.wildtime.com/?page=company">About Us</a></td>
                 </tr>
              <tr>
                <td align="left" height="2" valign="top" class="menu" style="background:url(http://www.wildtime.com/images/menu-divider.gif);background-repeat:repeat-x;background-position:center;"></td>
              </tr>
              <tr>                 <td align="left" valign="top" class="menu" style="padding: 4px 0px 6px 20px;"><a href="http://www.wildtime.com/?page=products">Online Store</a></td>
                 </tr>
              <tr>
                <td align="left" height="2" valign="top" class="menu" style="background:url(http://www.wildtime.com/images/menu-divider.gif);background-repeat:repeat-x;background-position:center;"></td>
              </tr>
              <tr>
                              <td align="left" height="2" valign="top" class="menu" style="padding: 4px 0px 6px 20px;"><a href="http://www.wildtime.com/?page=products&cat_id=special">Specials</a> </td>
                         </tr>
              <tr>
                <td align="left" height="2" valign="top" class="menu" style="background:url(http://www.wildtime.com/images/menu-divider.gif);background-repeat:repeat-x;background-position:center;"></td>
              </tr>
              <tr>
                              <td align="left" height="2" valign="top" class="menu" style="padding: 4px 0px 6px 20px;"><a href="http://www.wildtime.com/?page=store_locator">Find Us</a> </td>
                         </tr>
                            <tr>
                <td align="left" height="2" valign="top" class="menu" style="background:url(http://www.wildtime.com/images/menu-divider.gif);background-repeat:repeat-x;background-position:center;"></td>
              </tr><tr>
                              <td align="left" valign="top" class="menu" style="padding: 4px 0px 6px 20px;"><a href="http://www.wildtime.com/?page=order_form">Info Request</a></td>
                 </tr>
              <tr>
                <td align="left" height="2" valign="top" class="menu" style="background:url(http://www.wildtime.com/images/menu-divider.gif);background-repeat:repeat-x;background-position:center;"></td>
              </tr>
               <tr>
                              <td align="left" valign="top" class="menu" style="padding: 4px 0px 6px 20px;"><a href="http://www.wildtime.com/?page=certification">Certification</a></td>
                         </tr>              
              
              <tr>
                <td align="left" height="2" valign="top" class="menu" style="background:url(http://www.wildtime.com/images/menu-divider.gif);background-repeat:repeat-x;background-position:center;"></td>
              </tr><tr>
                              <td align="left" valign="top" class="menu" style="padding: 4px 0px 6px 20px;"><a href="http://www.wildtime.com/?page=suppliers">Suppliers</a></td>
                 
              </tr>
              <tr>
                <td align="left" height="2" valign="top" class="menu" style="background:url(http://www.wildtime.com/images/menu-divider.gif);background-repeat:repeat-x;background-position:center;"></td>
              </tr>
              <tr>
                  <td align="left" valign="top" class="menu" style="padding: 4px 0px 6px 20px;"><a href="http://www.wildtime.com/blog/" target="_blank">Blog</a></td>
              </tr>
              <tr>
                  <td align="center" class="menu" style="padding: 30px 0px 0px 0px;"><a href="https://www.wildtime.com/?page=cart"><img src="http://www.wildtime.com/images/view-cart.gif" border="0" alt="View Cart" /><br />View Cart</a></td>
              </tr>
              
          </table>
          
          </td>
        </tr>
        
        <tr>
          <td></td>
          <td bgcolor="#6DA1EF"></td>
        </tr>
        
        </table>
      <br />
      <br /></td>
    <td rowspan="3" align="left" valign="top" style="background-image:url(http://www.wildtime.com/images/stripe-top.gif);background-repeat:repeat-x;background-position:top;padding-top:25px;"><img src="http://www.wildtime.com/images/wildtime-foods-logo-end.gif" alt="Wildtime Logo" width="30" height="73" style="margin-top:-25px;" />
        
                        
            

<script type="text/javascript" src="http://www.wildtime.com/slideshow.js"></script>
<script type="text/javascript"><!-- 
SLIDES = new slideshow("SLIDES");
SLIDES.prefetch = 3;
SLIDES.timeout = 5000;

s = new slide();
s.textid = "slideshow_text";
s.src =  "http://www.wildtime.com/images/home-granola.jpg";
s.filter = 'progid:DXImageTransform.Microsoft.Fade()';
s.text = '<a style=\"color:#83AF2C;\" href=\"http://www.wildtime.com/?page=products&cat_id=1\">GRANOLAS</a><br /><br /><a href=\"http://www.wildtime.com/?page=products&cat_id=3\">MUESLIS</a><br /><br /><a href=\"http://www.wildtime.com/?page=products&cat_id=2\">PORRIDGES</a><br /><br /><a href=\"http://www.wildtime.com/?page=products&cat_id=4\">TRAIL MIXES</a><br /><br /><a href=\"http://www.wildtime.com/?page=products&cat_id=5\">NUT BUTTERS</a><br /><br /><a href=\"http://www.wildtime.com/?page=products&cat_id=6\">FRUITS &amp; NUTS</a>';
SLIDES.add_slide(s);

s = new slide();
s.textid = "slideshow_text";
s.src =  "http://www.wildtime.com/images/home-muesli.jpg";
s.filter = 'progid:DXImageTransform.Microsoft.Fade()';
s.text = '<a href=\"http://www.wildtime.com/?page=products&cat_id=1\">GRANOLAS</a><br /><br /><a style=\"color:#83AF2C;\"  href=\"http://www.wildtime.com/?page=products&cat_id=3\">MUESLIS</a><br /><br /><a href=\"http://www.wildtime.com/?page=products&cat_id=2\">PORRIDGES</a><br /><br /><a href=\"http://www.wildtime.com/?page=products&cat_id=4\">TRAIL MIXES</a><br /><br /><a href=\"http://www.wildtime.com/?page=products&cat_id=5\">NUT BUTTERS</a><br /><br /><a href=\"http://www.wildtime.com/?page=products&cat_id=6\">FRUITS &amp; NUTS</a>';
SLIDES.add_slide(s);

s = new slide();
s.textid = "slideshow_text";
s.src =  "http://www.wildtime.com/images/home-oatmeal.jpg";
s.filter = 'progid:DXImageTransform.Microsoft.Fade()';
s.text = '<a href=\"http://www.wildtime.com/?page=products&cat_id=1\">GRANOLAS</a><br /><br /><a href=\"http://www.wildtime.com/?page=products&cat_id=3\">MUESLIS</a><br /><br /><a  style=\"color:#83AF2C;\" href=\"http://www.wildtime.com/?page=products&cat_id=2\">PORRIDGES</a><br /><br /><a href=\"http://www.wildtime.com/?page=products&cat_id=4\">TRAIL MIXES</a><br /><br /><a href=\"http://www.wildtime.com/?page=products&cat_id=5\">NUT BUTTERS</a><br /><br /><a href=\"http://www.wildtime.com/?page=products&cat_id=6\">FRUITS &amp; NUTS</a>';
SLIDES.add_slide(s);

s = new slide();
s.textid = "slideshow_text";
s.src =  "http://www.wildtime.com/images/home-trail-mix.jpg";
s.filter = 'progid:DXImageTransform.Microsoft.Fade()';
s.text = '<a href=\"http://www.wildtime.com/?page=products&cat_id=1\">GRANOLAS</a><br /><br /><a href=\"http://www.wildtime.com/?page=products&cat_id=3\">MUESLIS</a><br /><br /><a href=\"http://www.wildtime.com/?page=products&cat_id=2\">PORRIDGES</a><br /><br /><a  style=\"color:#83AF2C;\" href=\"http://www.wildtime.com/?page=products&cat_id=4\">TRAIL MIXES</a><br /><br /><a href=\"http://www.wildtime.com/?page=products&cat_id=5\">NUT BUTTERS</a><br /><br /><a href=\"http://www.wildtime.com/?page=products&cat_id=6\">FRUITS &amp; NUTS</a>';
SLIDES.add_slide(s);

s = new slide();
s.textid = "slideshow_text";
s.src =  "http://www.wildtime.com/images/home-nut-butters.jpg";
s.filter = 'progid:DXImageTransform.Microsoft.Fade()';
s.text = '<a href=\"http://www.wildtime.com/?page=products&cat_id=1\">GRANOLAS</a><br /><br /><a href=\"http://www.wildtime.com/?page=products&cat_id=3\">MUESLIS</a><br /><br /><a href=\"http://www.wildtime.com/?page=products&cat_id=2\">PORRIDGES</a><br /><br /><a href=\"http://www.wildtime.com/?page=products&cat_id=4\">TRAIL MIXES</a><br /><br /><a  style=\"color:#83AF2C;\" href=\"http://www.wildtime.com/?page=products&cat_id=5\">NUT BUTTERS</a><br /><br /><a href=\"http://www.wildtime.com/?page=products&cat_id=6\">FRUITS &amp; NUTS</a>';
SLIDES.add_slide(s);

s = new slide();
s.textid = "slideshow_text";
s.src =  "http://www.wildtime.com/images/home-commodities.jpg";
s.filter = 'progid:DXImageTransform.Microsoft.Fade()';
s.text = '<a href=\"http://www.wildtime.com/?page=products&cat_id=1\">GRANOLAS</a><br /><br /><a href=\"http://www.wildtime.com/?page=products&cat_id=3\">MUESLIS</a><br /><br /><a href=\"http://www.wildtime.com/?page=products&cat_id=2\">PORRIDGES</a><br /><br /><a href=\"http://www.wildtime.com/?page=products&cat_id=4\">TRAIL MIXES</a><br /><br /><a href=\"http://www.wildtime.com/?page=products&cat_id=5\">NUT BUTTERS</a><br /><br /><a  style=\"color:#83AF2C;\" href=\"http://www.wildtime.com/?page=products&cat_id=6\">FRUITS &amp; NUTS</a>';
SLIDES.add_slide(s);

-->
</script>
<table cellpadding="0" cellspacing="0" border="0">
<tr><td><img src="http://www.wildtime.com/images/hand-made-in-oregon.gif" alt="Hand Made in Oregon" width="72" height="73" align="right" style="margin-left:20px;" />
<div style="height:340px;">
        <img src="http://www.wildtime.com/images/home-granola.jpg" alt="Product Photo" name="SLIDESIMG" width="216" height="330" align="left" style="margin-right:30px;filter:progid:DXImageTransform.Microsoft.Fade();" />    
        <div class="home_feature" id="slideshow_text" style="padding-top: 10px;"></div>
      </div>
    <table width="100%" border="0" cellpadding="20" cellspacing="0">
      <tr>
        <td>
            <h2 style="margin-top: 0;">What's New</h2>
            
            <img src="http://www.wildtime.com/image.php?image=assets/admin_copy_block_image/1.jpeg" alt="Wildtime Foods" width="216" height="162" align="right" style="margin: 0px 0px 10px 10px;" />
            At Wildtime Foods, we're committed to developing close connections with our customers. We talk to each other about our families, our travels, our pets, and of course, we chat about food. We know our customers by name, not by number.<div><br /></div><div>With a little help from the Internet, we hope to get to know our customers even better. We're happy to announce that you can now find Grizzlies Brand on Facebook and Twitter. We'll be sharing information about Grizzlies Brand products, recipes, and behind-the-scenes stories from Wildtime Foods. We hope that you'll share your stories as well.</div><div><br /></div><div>Follow us on Facebook and Twitter to receive our latest updates and join in the conversation. You can also check out our blog -- we'd love to hear from you!<br /><br /><br /><a href="/?page=products" title="Click here to start shopping!">Click here to start shopping!</a></div>
            <br />
            <br />
            
                               </td>
      </tr>
</table>
    
    </td>
</tr>
</table>

<script language="javascript" type="text/javascript">
<!-- 

if (document.images) {
  SLIDES.image = document.images.SLIDESIMG;
  SLIDES.textid = "slideshow_text";
  SLIDES.update();
  SLIDES.play();
}
 -->
</script>
        
                
        </td>
    <td valign="top" style="background:url(http://www.wildtime.com/images/stripe-right-gap.gif);background-repeat:repeat-y;"><img src="http://www.wildtime.com/images/stripe-top-right.gif" width="30" height="73" /></td>
    <td><img src="http://www.wildtime.com/images/spacer.gif" width="1" height="73" /></td>
  </tr>
  
  <tr>
      <td style="background: url(http://www.wildtime.com/images/stripe-right.gif); background-position: right; background-repeat: repeat-y;"></td>
    <td><img src="http://www.wildtime.com/images/spacer.gif" width="1" height="122" /></td>
  </tr>
  
  <tr>
    <td style="background: url(http://www.wildtime.com/images/stripe-right.gif); background-position: left; background-repeat: repeat-y;"></td>
    <td><img src="http://www.wildtime.com/images/spacer.gif" width="1" height="321" /></td>
  </tr>
  
  <tr>
    <td style="background-image: url(http://www.wildtime.com/images/stripe-bottom.gif); background-repeat: repeat-x; background-position: bottom; background-color: #FFFFFF;"></td>
    <td height="30" background="#ffffff;" valign="bottom" style="background: url(http://www.wildtime.com/images/stripe-right.gif); background-position: right; background-repeat: repeat-y;"><img src="http://www.wildtime.com/images/stripe-bottom-right.gif" width="30" height="30" /></td>
    <td><img src="http://www.wildtime.com/images/spacer.gif" width="1" height="30" /></td>
  </tr>
  
  <tr>
    <td colspan="2">&nbsp;</td>
    <td style="color:#336600;font-size:11px;padding:5px;line-height:15px;">Copyright &copy; 2012 Wildtime Foods  &nbsp;&nbsp;&nbsp;   P.O. Box 1471  &nbsp;&nbsp;&nbsp;   Eugene, OR 97440<br />
        <a href="mailto:&#105;&#110;&#102;&#111;&#64;&#119;&#105;&#108;&#100;&#116;&#105;&#109;&#101;&#46;&#99;&#111;&#109;" title="info@wildtime.com">info@wildtime.com</a>  &nbsp;&nbsp;&nbsp;   Phone : 800-356-4458   &nbsp;&nbsp;&nbsp;  Fax : 541-747-5067 </td>
    <td style="color:#FFFFFF;font-size:11px;padding:5px;line-height:15px;"></td>
    <td><img src="http://www.wildtime.com/images/spacer.gif" width="1" height="30" /></td>
  </tr>
  
  <tr>
    <td colspan="2"><img src="http://www.wildtime.com/images/spacer.gif" width="232" height="1" /></td>
    <td><img src="http://www.wildtime.com/images/spacer.gif" width="518" height="1" /></td>
    <td><img src="http://www.wildtime.com/images/spacer.gif" width="30" height="1" /></td>
    <td><img src="http://www.wildtime.com/images/spacer.gif" width="1" height="1" /></td>
  </tr>
  
</table><br />
            <script src="http://www.google-analytics.com/urchin.js" type="text/javascript">
        </script>
        <script type="text/javascript">
        _uacct = "UA-166682-17";
        urchinTracker();
        </script>
    </body>
</html>
Go to top

About QuoBuzz.com

Our site strives to provide helpful information to our readers.  By offering not only fact-based whois information, but also an informative overview of each website, we seek to give you a broad view of how each site operates.  Every day our writers and researchers work together to find all of the most up-to-date information about each website we feature.  Our goal is to create a space where you will gain the most information for your time, because in our view, our time is spent saving others’ time.  Rather than spending hours scouring the web for the information you seek, you will be able to find it all in one well-organized space, allowing you more time to enjoy browsing the web at your leisure.

Read on

What they say about us!

This site has been a great resource for me. The ease of use, wide variety of information, as well as the great layout are a refreshing change to the standard, bulky sites I have used in the past. Here I am able to find everything I need in one site, without spending hours sifting through little bits of information across the Internet. This has led to improving my own productivity, because I spend far less time searching all over the place for the content I need. I definitely see a strong future for this site and will continue to use it for my needs.

eRic000 - eRic Design

More...