WHOIS Service

idahopotato.com - information about domain

  • Server Status: available
  • Server IP: 216.92.208.246
  • Server Response Time: 431ms

Site title

Idaho Potato Commission - Home

Alexa information

Alexa rank: 366,298

Rank Trend

Bounce Trend

DNS Information

Host: Class: Type: IP: TTL: Target: Other:
idahopotato.com IN SOA 3600 mname: ns169.pair.com
rname: root.pair.com
serial: 2012012014
refresh: 3600
retry: 300
expire: 604800
minimum-ttl: 3600
idahopotato.com IN MX 3600 mail.idahopotato.com pri: 25
idahopotato.com IN A 216.92.208.246 3600
idahopotato.com IN NS 3600 ns000.ns0.com
idahopotato.com IN NS 3600 ns169.pair.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>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" />
<script language="javascript" type="text/javascript" src="http://www.idahopotato.com/lib/common/cms_initialize.js"></script>
<script language="javascript" type="text/javascript" src="http://www.idahopotato.com/lib/common/cms_macromedia.js"></script>
<script language="javascript" type="text/javascript" src="http://www.idahopotato.com/lib/common/jah.js"></script>
<script language="javascript" type="text/javascript" src="http://www.idahopotato.com/lib/common/jquery-1.2.6.min.js"></script>
<script language="javascript" type="text/javascript" src="http://www.idahopotato.com/lib/common/jquery_highlight.js"></script>
<script language="javascript" type="text/javascript" src="http://www.idahopotato.com/lib/common/validate.js"></script>
<script type="text/javascript">
    var GB_ROOT_DIR = "http://www.idahopotato.com/lib/common/greybox/greybox/";
</script>
<script type="text/javascript" src="http://www.idahopotato.com/lib/common/galleria/galleria.js"></script>
<link href="http://www.idahopotato.com/lib/common/galleria/galleria.css" rel="stylesheet" type="text/css" media="screen"> 
<script type="text/javascript" src="http://www.idahopotato.com/lib/common/greybox/greybox/AJS.js"></script>
<script type="text/javascript" src="http://www.idahopotato.com/lib/common/greybox/greybox/AJS_fx.js"></script>
<script type="text/javascript" src="http://www.idahopotato.com/lib/common/greybox/greybox/gb_scripts.js"></script>
<script type="text/javascript" src="http://www.idahopotato.com/lib/common/quicksand.js"></script>
<link href="http://www.idahopotato.com/lib/common/greybox/greybox/gb_styles.css" rel="stylesheet" type="text/css" />
<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.idahopotato.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;
        }
        
        var SITE_URL = 'http://www.idahopotato.com';
-->
</script>
<script language="javascript" type="text/javascript">

function checkThis(d, s) {
    if (d == "") {
        //searchform.searchbox.value = "search";
        document.getElementById("searchbox").value="Search";
    }
}

</script>
<title>Idaho Potato Commission - Home</title>
<link href="http://www.idahopotato.com/styles.css" rel="stylesheet" type="text/css" />
<link href="http://www.idahopotato.com/styles-www.css" rel="stylesheet" type="text/css" />

        
</head>
<body>
    <div id="header">
    
        <a href="http://www.idahopotato.com"><img src="http://www.idahopotato.com/images/idaho-potato-commission-logo.png" width="78" height="111" alt="Idaho Potato Commission" align="left" id="header-logo" style="position: relative; z-index: 2;" /></a>
            
        <div id="header-main-nav">
            
            <div style="float: left; font-size: 12px; letter-spacing: 2px;">THE <strong>OFFICIAL</strong> HOME OF THE IDAHO&reg; POTATO</div>
            
            <div id="search">
        
                <form name="search" method="GET" action="http://www.idahopotato.com" style="margin:0;padding:0;">
                <input type="hidden" name="page" value="search">SEARCH RECIPES &amp; VIDEOS <input name="query" type="text" id="q" class="search-text-input" /></form>
        
            </div>

        </div>

        <div id="header-sub-nav">
            <div id="header-sub-nav-main">
                <ul>
                    <li id="header-main-nav-blue"><a href="http://licensing.idahopotato.com">LICENSING</a></li>
                    <li id="header-main-nav-black" style="width: 140px;"><a href="http://industry.idahopotato.com">INDUSTRY RELATIONS</a></li>
                    <li id="header-main-nav-green"><a href="http://foodservice.idahopotato.com">FOODSERVICE</a></li>
                    <li id="header-main-nav-red" style="width: 70px;"><a href="http://retail.idahopotato.com">RETAIL</a></li>
                    <li id="header-main-nav-brown" style="background-image: none; width: 70px;"><a style="color: #fffbd4;" href="http://www.idahopotato.com"><strong>HOME</strong></a></li>
                </ul>
            </div>
            <ul>
                            <li><a href="http://www.idahopotato.com/">HOME</a></li>
                <li><a href="http://www.idahopotato.com/recipes">RECIPES</a></li>
                <li><a href="http://www.idahopotato.com/nutrition_education">NUTRITION</a></li>
                <li><a href="http://www.idahopotato.com/why_idaho">WHY IDAHO</a></li>
                <li><a href="http://www.idahopotato.com/kids">JUST FOR KIDS</a></li>
                <li><a href="http://www.idahopotato.com/faqs">POTATO FAQs</a></li>
                <li><a href="http://www.idahopotato.com/gallery">GALLERY</a></li>
                <li><a href="http://www.idahopotato.com/about_us">ABOUT US</a></li>
                <li><a href="http://www.idahopotato.com/contact">CONTACT US</a></li>
                        </ul>
        </div>
        
        <div id="header-lower-nav">
        
            <div id="header-lower-nav-aristocrat"><a href="http://www.idahopotato.com/videos2"><img src="http://www.idahopotato.com/images/main-video-icon.png" width="30" height="24" alt="Videos" style="margin: 4px 10px -4px 0px;" /></a><a href="http://www.idahopotato.com/videos2">Videos</a></div>
        
            <ul>
                <li><a href="http://directory.idahopotato.com"><img src="http://www.idahopotato.com/images/icon-directory.gif" width="23" height="18" alt="Shippers and Processors Directory" style="margin: 4px 0px -4px 0px;" /></a> <a href="http://directory.idahopotato.com">DIRECTORY &raquo;</a></li>
                <li><a href="http://store.idahopotato.com"><img src="http://www.idahopotato.com/images/icon-store.gif" width="22" height="19" alt="Store" style="margin: 4px 0px -4px 0px;" /></a> <a href="http://store.idahopotato.com">STORE &raquo;</a></li>
                <li><a href="http://pressroom.idahopotato.com"><img src="http://www.idahopotato.com/images/icon-press.gif" width="23" height="18" alt="Press Room" style="margin: 4px 0px -4px 0px;" /></a> <a href="http://pressroom.idahopotato.com">PRESS &raquo;</a></li>        
            </ul>
        
        </div>
        
    </div>

    <div id="main-content">
    
                        
            


<script type="text/javascript">
jQuery.preloadImages = function()
{
  for(var i = 0; i<arguments.length; i++)
  {
    jQuery("<img>").attr("src", arguments[i]);
  }
}
jQuery.timer = function (interval, callback) {
    var interval = interval || 100;

    if (!callback)
        return false;
    
    _timer = function (interval, callback) {
        this.stop = function () {
            clearInterval(self.id);
        };
        
        this.internalCallback = function () {
            callback(self);
        };
        
        this.reset = function (val) {
            if (self.id)
                clearInterval(self.id);
            
            var val = val || 100;
            this.id = setInterval(this.internalCallback, val);
        };
        
        this.interval = interval;
        this.id = setInterval(this.internalCallback, this.interval);
        
        var self = this;
    };
    
    return new _timer(interval, callback);
};
(function(jQuery) {
    jQuery.fn.extend({
        pause: function(milli,type) {
            milli = milli || 1000;
            type = type || "fx";
            return this.queue(type,function(){
                var self = this;
                setTimeout(function(){
                    jQuery(self).dequeue();
                },milli);
            });
        },
        clearQueue: function(type) {
            return this.each(function(){
                type = type || "fx";
                if(this.queue && this.queue[type]) {
                    this.queue[type].length = 0;
                }
            });
        },
        unpause: jQuery.fn.clearQueue
    });
})(jQuery);
$(document).ready(function() {
    $.preloadImages( SITE_URL + "/images_www/home-slide-1-bg.jpg", SITE_URL + "/images_www/home-slide-2-bg.jpg",  SITE_URL + "/images_www/home-slide-3-bg.jpg",  SITE_URL + "/images_www/home-slide-4-bg.jpg");
    var totalImages = 3;
    var image = 1;
    var fadeSpeed = 1000;
    var slideShowContinue = true;
    //$("#home-slide-1").fadeIn(1000);
    $.timer(0, function(timer) {
        if ( (image < totalImages) && slideShowContinue ) {
            $(".home-slide").hide();
            $("#home-slide-" + image).fadeIn(fadeSpeed);
            $(".slide-nav-button").children("img").attr("src", SITE_URL + "/images/home-slide-nav-off.png");
            $("#slide-nav-button-" + image).attr("src", SITE_URL + "/images/home-slide-nav-" + image + "-on.png");
            timer.reset(6000);
            image++;
        } else if ( (image == totalImages) && slideShowContinue ) {
            $(".home-slide").hide();
            $("#home-slide-" + image).fadeIn(fadeSpeed);
            $(".slide-nav-button").children("img").attr("src", SITE_URL + "/images/home-slide-nav-off.png");
            $("#slide-nav-button-" + image).attr("src", SITE_URL + "/images/home-slide-nav-" + image + "-on.png");
            timer.reset(6000);
            image = 1;
        }
    });
    $(".slide-nav-button").click(function() {
        var target = $(this).attr("tgt");
        $(".home-slide").stop().hide();
        $("#home-slide-" + target).fadeIn(1000);
        $(".slide-nav-button").children("img").attr("src", SITE_URL + "/images/home-slide-nav-off.png");
        $("#slide-nav-button-" + target).attr("src", SITE_URL + "/images/home-slide-nav-" + target + "-on.png");
        slideShowContinue = false;
    });
});
</script>


<div id="home-slide-container">

    <ul>
        
        <li id="home-slide-1" class="home-slide">
        
            <div style="background: url(http://www.idahopotato.com/images_www/home-slide-1-bg.jpg) no-repeat; height: 280px; width: 940px;">
            
                <img src="http://www.idahopotato.com/images_www/home-slide-1-bg.jpg" width="940" height="280" border="0" usemap="#slide-1" />
                <map name="slide-1" id="slide-1">
                    <area shape="rect" coords="271,223,430,241" href="http://www.idahopotato.com/heart_healthy_recipes" title="View Heart-Healthy Recipes" alt="View Heart-Healthy Recipes" />
                    <area shape="rect" coords="272,187,435,218" href="http://www.idahopotato.com/recipes/id-951" title="Heart-Healthy Idaho Potato Broccoli Soup" alt="Heart-Healthy Idaho Potato Broccoli Soup" />
                    <area shape="rect" coords="30,223,225,240" href="http://www.idahopotato.com/gluten_free" title="View Gluten-Free Recipes" alt="View Gluten-Free Recipes" />
                    <area shape="rect" coords="30,185,169,218" href="http://www.idahopotato.com/nutrition_education" title="Visit Our Updated Nutrition Section" alt="Visit Our Updated Nutrition Section" />
                </map>

            </div>
        
        </li>
        
        <li id="home-slide-2" class="home-slide">
        
            <div style="background: url(http://www.idahopotato.com/images_www/home-slide-2-bg.jpg) no-repeat; height: 280px; width: 940px;">

                <a href="http://www.facebook.com/famousidahopotatoes">
                <img src="http://www.idahopotato.com/images_www/home-slide-2-bg.jpg" width="940" height="280" border="0" />
                </a>

            </div>
            
        </li>

        <li id="home-slide-3" class="home-slide">
        
            <div style="background: url(http://www.idahopotato.com/images_www/home-slide-3-bg.jpg) no-repeat; height: 280px; width: 940px;">
            
                <a href="http://blog.idahopotato.com">
                <img src="http://www.idahopotato.com/images_www/home-slide-3-bg.jpg" width="940" height="280" border="0" />
                </a>

            </div>
        
        </li>
        
    </ul>
    
    <div id="home-slide-navigation">
    
        <a class="slide-nav-button" tgt="1"><img id="slide-nav-button-1" src="http://www.idahopotato.com/images/home-slide-nav-1-on.png" width="27" height="26" /></a>
        <a class="slide-nav-button" tgt="2"><img id="slide-nav-button-2" src="http://www.idahopotato.com/images/home-slide-nav-off.png" width="27" height="26" /></a>
        <a class="slide-nav-button" tgt="3"><img id="slide-nav-button-3" src="http://www.idahopotato.com/images/home-slide-nav-off.png" width="27" height="26" /></a>
    
    </div>

</div>

<div class="line"></div>

<div id="home-bottom-container">

    <div id="home-bottom-callouts">
        <a href="http://www.facebook.com/famousidahopotatoes" style="display:block;">
        <img src="http://www.idahopotato.com/images_www/home-bottom-callout-1.jpg" alt="" width="308" height="79" border="0" />
        </a>
        <img src="http://www.idahopotato.com/images_www/home-bottom-callout-2.jpg" alt="" width="308" height="79" border="0" usemap="#BMap4" />
        <map name="BMap4" id="BMap4">
            <area shape="rect" coords="186,60,309,94" href="http://www.idahopotato.com/video_player2/id-1w-IehbCLOo" alt="Watch Video" />
        </map>
        <img src="http://www.idahopotato.com/images_www/home-bottom-callout-3.jpg" alt="" width="308" height="79" border="0" usemap="#BMap" />
        <map name="BMap" id="BMap">
            <area shape="rect" coords="204,61,341,103" href="http://www.idahopotato.com/image_contest" alt="" />
        </map>
    </div>
    
    <div id="home-recipe-card">
        
        
        
        <div id="home-recipe-card-title"><h2><a href="http://www.idahopotato.com/recipes/id-665">Golden Biscuits with a Creamy Idaho
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...

Last checked domains