WHOIS Service

equineworldinsurance.com - information about domain

  • Server Status: available
  • Server IP: 184.168.192.36
  • Server Response Time: 309ms

Site title

Equine World Insurance

Alexa information

Alexa rank: not in database

Rank Trend

Bounce Trend

DNS Information

Host: Class: Type: IP: TTL: Target: Other:
equineworldinsurance.com IN MX 3600 mailstore1.secureserver.net pri: 10
equineworldinsurance.com IN MX 3600 smtp.secureserver.net
equineworldinsurance.com IN A 184.168.192.36 3600
equineworldinsurance.com IN SOA 3600 mname: ns51.domaincontrol.com
rname: dns.jomax.net
serial: 2009042702
refresh: 28800
retry: 7200
expire: 604800
minimum-ttl: 3600
equineworldinsurance.com IN NS 3600 ns51.domaincontrol.com
equineworldinsurance.com IN NS 3600 ns52.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><title>
    Equine World Insurance
</title><link href="css/style.css" rel="stylesheet" type="text/css" />
<style type="text/css">

#pscroller1{
width: 200px;
height: 390px;
padding:5px;
/*background-color:#FF0000;*/
}

.someclass{ //class to apply to your scroller(s) if desired
}
.style2 {
    color: #a8440d;
    font-weight: bold;
}
</style>
<script type="text/javascript">

/*Example message arrays for the two demo scrollers*/

var pausecontent2=new Array()

pausecontent2[0]='<p style="text-align:justify;">Equine World Insurance has a knowledgeable and friendly staff and service team. They were able to provide me with affordable and broad farm coverage from one of the nation’s top companies. I am extremely pleased with the mortality rates and insurance for my halter horse. They even provided me with auto insurance the day I requested it!</p><br /><p align="right">Cheryl Vasi<br />Gowen, MI</p>'
pausecontent2[1]='<p style="text-align:justify;">Equine World Insurance did a great job providing us with insurance on our current show horses and provided us with a binder on a horse we just purchased within an hour.  There service was fast and effective.  The rates we received were the best rates around.</p><br /><p align="right">Larry & Robin Robinett Morse</p>'
pausecontent2[2]='<p style="text-align:justify;">About 2 years ago, I invested in a wonderful show pony and decided to protect my financial and emotional investment with an insurance policy. The agents at Equine World Insurance were extremely helpful in finding me the best policy. Since I teach horseback riding and train part-time, I decided to invest in a liability policy. The Equine World Insurance representative was great in explaining and researching my various options and was able to suggest a policy that suited my needs. Their representative is knowledgeable about the horse world and understands how to make this kind of purchase a non-stressful experience.</p><br /><p align="right">Kathy Smolinski<br />Hartland, MI</p><br /><br />'
pausecontent2[3]='<p style="text-align:justify;">I just wanted to let you know how pleased I am with Equine World Insurance. You insured my mare at a price that your competitors couldn\'t beat, and then when she was sold the unused premium was promptly refunded as promised. My agent was very knowledgeable and helpful throughout the process. I appreciate you all and would not hesitate to use you again!!!</p><br /><p align="right">Jan W.<br />Custer, WI</p>'

</script>
<script type="text/javascript">

/***********************************************
* Pausing up-down scroller- © Dynamic Drive (www.dynamicdrive.com)
* This notice MUST stay intact for legal use
* Visit http://www.dynamicdrive.com/ for this script and 100s more.
***********************************************/

function pausescroller(content, divId, divClass, delay){
this.content=content //message array content
this.tickerid=divId //ID of ticker div to display information
this.delay=delay //Delay between msg change, in miliseconds.
this.mouseoverBol=0 //Boolean to indicate whether mouse is currently over scroller (and pause it if it is)
this.hiddendivpointer=1 //index of message array for hidden div
document.write('<div id="'+divId+'" class="'+divClass+'" style="position: relative; overflow: hidden"><div class="innerDiv" style="position: absolute; width: 100%" id="'+divId+'1">'+content[0]+'</div><div class="innerDiv" style="position: absolute; width: 100%; visibility: hidden" id="'+divId+'2">'+content[1]+'</div></div>')
var scrollerinstance=this
if (window.addEventListener) //run onload in DOM2 browsers
window.addEventListener("load", function(){scrollerinstance.initialize()}, false)
else if (window.attachEvent) //run onload in IE5.5+
window.attachEvent("onload", function(){scrollerinstance.initialize()})
else if (document.getElementById) //if legacy DOM browsers, just start scroller after 0.5 sec
setTimeout(function(){scrollerinstance.initialize()}, 500)
}

// -------------------------------------------------------------------
// initialize()- Initialize scroller method.
// -Get div objects, set initial positions, start up down animation
// -------------------------------------------------------------------

pausescroller.prototype.initialize=function(){
this.tickerdiv=document.getElementById(this.tickerid)
this.visiblediv=document.getElementById(this.tickerid+"1")
this.hiddendiv=document.getElementById(this.tickerid+"2")
this.visibledivtop=parseInt(pausescroller.getCSSpadding(this.tickerdiv))
//set width of inner DIVs to outer DIV's width minus padding (padding assumed to be top padding x 2)
this.visiblediv.style.width=this.hiddendiv.style.width=this.tickerdiv.offsetWidth-(this.visibledivtop*2)+"px"
this.getinline(this.visiblediv, this.hiddendiv)
this.hiddendiv.style.visibility="visible"
var scrollerinstance=this
document.getElementById(this.tickerid).onmouseover=function(){scrollerinstance.mouseoverBol=1}
document.getElementById(this.tickerid).onmouseout=function(){scrollerinstance.mouseoverBol=0}
if (window.attachEvent) //Clean up loose references in IE
window.attachEvent("onunload", function(){scrollerinstance.tickerdiv.onmouseover=scrollerinstance.tickerdiv.onmouseout=null})
setTimeout(function(){scrollerinstance.animateup()}, this.delay)
}


// -------------------------------------------------------------------
// animateup()- Move the two inner divs of the scroller up and in sync
// -------------------------------------------------------------------

pausescroller.prototype.animateup=function(){
var scrollerinstance=this
if (parseInt(this.hiddendiv.style.top)>(this.visibledivtop+5)){
this.visiblediv.style.top=parseInt(this.visiblediv.style.top)-5+"px"
this.hiddendiv.style.top=parseInt(this.hiddendiv.style.top)-5+"px"
setTimeout(function(){scrollerinstance.animateup()}, 50)
}
else{
this.getinline(this.hiddendiv, this.visiblediv)
this.swapdivs()
setTimeout(function(){scrollerinstance.setmessage()}, this.delay)
}
}

// -------------------------------------------------------------------
// swapdivs()- Swap between which is the visible and which is the hidden div
// -------------------------------------------------------------------

pausescroller.prototype.swapdivs=function(){
var tempcontainer=this.visiblediv
this.visiblediv=this.hiddendiv
this.hiddendiv=tempcontainer
}

pausescroller.prototype.getinline=function(div1, div2){
div1.style.top=this.visibledivtop+"px"
div2.style.top=Math.max(div1.parentNode.offsetHeight, div1.offsetHeight)+"px"
}

// -------------------------------------------------------------------
// setmessage()- Populate the hidden div with the next message before it's visible
// -------------------------------------------------------------------

pausescroller.prototype.setmessage=function(){
var scrollerinstance=this
if (this.mouseoverBol==1) //if mouse is currently over scoller, do nothing (pause it)
setTimeout(function(){scrollerinstance.setmessage()}, 100)
else{
var i=this.hiddendivpointer
var ceiling=this.content.length
this.hiddendivpointer=(i+1>ceiling-1)? 0 : i+1
this.hiddendiv.innerHTML=this.content[this.hiddendivpointer]
this.animateup()
}
}

pausescroller.getCSSpadding=function(tickerobj){ //get CSS padding value, if any
if (tickerobj.currentStyle)
return tickerobj.currentStyle["paddingTop"]
else if (window.getComputedStyle) //if DOM2
return window.getComputedStyle(tickerobj, "").getPropertyValue("padding-top")
else
return 0
}

</script>

    <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js"></script>
    <script type="text/javascript" src="js/fadeslideshow.js"></script>
    <script type="text/javascript">

var mygallery2=new fadeSlideShow({
    wrapperid: "fadeshow1", //ID of blank DIV on page to house Slideshow
    dimensions: [200, 133], //width/height of gallery in pixels. Should reflect dimensions of largest image
    imagearray: [
        ["images/fade/product_01.jpg"],
        ["images/fade/product_02.jpg"],
        ["images/fade/product_03.jpg"],
        ["images/fade/product_04.jpg"],
        ["images/fade/product_05.jpg"] //<--no trailing comma after very last image element!
    ],
    displaymode: {type:'auto', pause:2500, cycles:0, wraparound:false},
    persist: false, //remember last viewed slide and recall within same session?
    fadeduration: 500, //transition duration (milliseconds)
    descreveal: "always",
    togglerid: "fadeshow2toggler"
})

</script>
</head>
<body>
    <form name="form1" method="post" action="index.aspx" onsubmit="javascript:return WebForm_OnSubmit();" id="form1">
<div>
<input type="hidden" name="__EVENTTARGET" id="__EVENTTARGET" value="" />
<input type="hidden" name="__EVENTARGUMENT" id="__EVENTARGUMENT" value="" />
<input type="hidden" name="__VIEWSTATE" id="__VIEWSTATE" value="/wEPDwUKMTE1ODYzNTc3OQ9kFgICAw9kFgQCAQ9kFgICAQ8WAh4JaW5uZXJodG1sBckDPGRpdiBpZD0ndG9wX25hdic+PHVsPjxsaT48YSBocmVmPSdpbmRleC5hc3B4JyBpZD0naG9tZV9hY3RpdmUnPjwvYT48L2xpPjxsaT48YSBocmVmPSdwYWdlLmFzcHg/cGFnZV9pZD0yJyBjbGFzcz0nYnRuX2Fib3V0Jz48L2E+PC9saT48bGk+PGEgaHJlZj0ncGFnZS5hc3B4P3BhZ2VfaWQ9NicgY2xhc3M9J2J0bl9zcGVjaWFsaXN0cyc+PC9hPjwvbGk+PGxpPjxhIGhyZWY9J3BhZ2UuYXNweD9wYWdlX2lkPTUnIGNsYXNzPSdidG5fbW9ydGFsaXR5Jz48L2E+PC9saT48bGk+PGEgaHJlZj0ncGFnZS5hc3B4P3BhZ2VfaWQ9NCcgY2xhc3M9J2J0bl9yYW5jaCc+PC9hPjwvbGk+PGxpPjxhIGhyZWY9J3BhZ2UuYXNweD9wYWdlX2lkPTMnIGNsYXNzPSdidG5fbGlhYmxpdHknPjwvYT48L2xpPjxsaT48YSBocmVmPSdjb250YWN0LmFzcHgnIGNsYXNzPSdidG5fY29udGF0Jz48L2E+PC9saT48L3VsPjwvZGl2PmQCDw8PFgIeBFRleHQF3QQ8cD48c3Ryb25nPkRPRVMgWU9VUiBIT01FIE9XTkVSUycgUFJPVEVDVCBIT1JTRSBPV05FUlNISVA/PC9zdHJvbmc+PC9wPgo8cD48c3Ryb25nPjxlbT5Zb3UgbWF5IHJ1biBhIGhvcnNlIGJ1c2luZXNzIHdpdGhvdXQga25vd2luZyBpdDwvZW0+PC9zdHJvbmc+PC9wPgo8cD5XaGV0aGVyIHlvdSBrZWVwIGhvcnNlcyBwcml2YXRlbHkgb3IgYXMgYSBidXNpbmVzcywgeW91IG5lZWQgbGlhYmlsaXR5IHByb3RlY3Rpb24uIFlvdSBhcmUgcmVzcG9uc2libGUgZm9yIGFueSBkYW1hZ2Ugb3IgaW5qdXJ5IHlvdXIgaG9yc2VzIG1heSBjYXVzZSwgb24gb3Igb2ZmIHlvdXIgcHJlbWlzZXMuPC9wPgo8cD5CdXQgZm9yIGluc3VyYW5jZSBwdXJwb3NlcyBpdCBpcyB2aXRhbCB0byBrbm93IHRoZSBkaWZmZXJlbmNlIGJldHdlZW4gdGhlIHR3byB0eXBlcyBvZiBvd25lcnNoaXAuIFRoYXQgZXF1aW5lIGFjdGl2aXR5IHlvdSByZWdhcmQgYXMgcHVyZWx5IHBlcnNvbmFsIG1heSBiZSBjb25zaWRlcmVkIGEgYnVzaW5lc3MgYnkgeW91ciBpbnN1cmFuY2UgY29tcGFueS4gSWYgeW91IGRvbiZyc3F1bzt0IGhhdmUgY292ZXJhZ2UgZm9yIGJ1c2luZXNzIGV4cG9zdXJlLCAuLi4uLmRkGAEFHl9fQ29udHJvbHNSZXF1aXJlUG9zdEJhY2tLZXlfXxYCBQxJbWFnZUJ1dHRvbjEFDEltYWdlQnV0dG9uMotaGUnohDiKDFXA+GhDgkLfhb8D" />
</div>

<script type="text/javascript">
//<![CDATA[
var theForm = document.forms['form1'];
if (!theForm) {
    theForm = document.form1;
}
function __doPostBack(eventTarget, eventArgument) {
    if (!theForm.onsubmit || (theForm.onsubmit() != false)) {
        theForm.__EVENTTARGET.value = eventTarget;
        theForm.__EVENTARGUMENT.value = eventArgument;
        theForm.submit();
    }
}
//]]>
</script>


<script src="/equine/WebResource.axd?d=BG-29vkmgU3KTblWeFHgHrZI8Hk-3_PqTIhFqsbC-kj655kiV_OtvFWLl2cCHEMPASkVMuIASHfiHfq8eu-02BWK7iU1&amp;t=634605258834856163" type="text/javascript"></script>


<script src="/equine/WebResource.axd?d=9wsSU8YI31RaCJjwxSQJ7cSvioDH5We4mC6mfYhGIbWEeN05GU67NXRIicGrUR5eR33ZQ1zINdBWE9zj0kumns_5wZI1&amp;t=634605258834856163" type="text/javascript"></script>
<script type="text/javascript">
//<![CDATA[
function WebForm_OnSubmit() {
if (typeof(ValidatorOnSubmit) == "function" && ValidatorOnSubmit() == false) return false;
return true;
}
//]]>
</script>

<div>

    <input type="hidden" name="__EVENTVALIDATION" id="__EVENTVALIDATION" value="/wEWCALQgLzNBgKth9yfAQLSwpnTCAKei+mIBgKSi6WLBgKTi6WLBgKQi6WLBgLSwtXkAl63u1XkR3gqLrAjKhH5LT660lV0" />
</div>
    <div id="outer_wrapper">
    <div id="wrapper">
    <div id="inner_wrapper">
    
<div id="header">
  <div id="top_head">
    <div id="header_left"></div>
    <div id="header_right">
      <div class="search_wrap">
        <div class="search_bg">
          <input type="text"/>
        </div>
        <div class="search_btn">
          <input type="image" src="images/input_btn.jpg" />
        </div>
      </div>
    </div>
  </div>
  <div id="header_navigation"><div id='top_nav'><ul><li><a href='index.aspx' id='home_active'></a></li><li><a href='page.aspx?page_id=2' class='btn_about'></a></li><li><a href='page.aspx?page_id=6' class='btn_specialists'></a></li><li><a href='page.aspx?page_id=5' class='btn_mortality'></a></li><li><a href='page.aspx?page_id=4' class='btn_ranch'></a></li><li><a href='page.aspx?page_id=3' class='btn_liablity'></a></li><li><a href='contact.aspx' class='btn_contat'></a></li></ul></div></div>
</div>
      <div id="inner_body_home">
        <div id="left_panel_wrapper">
          <div id="left_panel">
            <div class="home_logo"><img src="images/eguine_logo.jpg" /></div>
            <div class="left_panel_txt">
              <h4>Toll Free # 866.954.0555</h4>
    
            </div>
            <div class="sprater"></div>
            <div class="sponser_link" id="fadeshow1">
           <div id="fadeshow2"></div>            
             </div>
            <div class="sprater"></div>
            
            <div class="newsletter_wrap">
              <div  class="newsletter">
                <div  class="newsletter_bg">
                    <input name="txtNewsLetter" type="text" id="txtNewsLetter" style="width:142px;" />
                    <br />
                    <span id="RegularExpressionValidator1" style="color:Red;display:none;">Enter valid email</span>
                    <span id="RequiredFieldValidator1" style="color:Red;display:none;">Enter Email</span></div>
                <div  class="newsletter_btn">
                    <input type="image" name="ImageButton1" id="ImageButton1" src="images/news_btn.jpg" onclick="javascript:WebForm_DoPostBackWithOptions(new WebForm_PostBackOptions(&quot;ImageButton1&quot;, &quot;&quot;, true, &quot;q&quot;, &quot;&quot;, false, false))" style="border-width:0px;" />
                </div>
              </div>
            </div>
          </div>
        </div>
        <div id="contant_outer_wrap">
          <div id="contant_wrap">
            <div class="contant">
              <div id="insurance_bg">
                <div class="insurance_type">
                    &nbsp;<select name="DropDownList1" id="DropDownList1">
    <option selected="selected" value="-1">------ Select ------</option>
    <option value="1">Equine Mortality</option>
    <option value="2">Farm &amp; Ranch</option>
    <option value="3">Equine Liablity</option>

</select></div>
                <div class="btn_go">
                    <input type="image" name="ImageButton2" id="ImageButton2" src="images/btn_go.jpg" style="border-width:0px;" />
                </div>
              </div>
              <div class="contant_txt">
                <h3>Recent Article</h3>
                <p>
                    <span id="lblArticle"><p><strong>DOES YOUR HOME OWNERS' PROTECT HORSE OWNERSHIP?</strong></p>
<p><strong><em>You may run a horse business without knowing it</em></strong></p>
<p>Whether you keep horses privately or as a business, you need liability protection. You are responsible for any damage or injury your horses may cause, on or off your premises.</p>
<p>But for insurance purposes it is vital to know the difference between the two types of ownership. That equine activity you regard as purely personal may be considered a business by your insurance company. If you don&rsquo;t have coverage for business exposure, .....</span>&nbsp;</p>
              </div>
              <div class="readmoor_link"> <img src="images/readmoor_img.jpg"/> <a href="getUserDetail.aspx"> Read More</a></div>
            </div>
          </div>
        </div>
        <div id="right_panel">
            <table width="227" border="0" cellspacing="0" cellpadding="0">
                  <tr>
                    <td><div id="testimonials_logo"></div></td>
                  </tr>
                  <tr>
                    <td><div class="sprater"></div></td>
                  </tr>
                  <tr>
                    <td style="padding-left:10px;">
                         <script type="text/javascript">
                            new pausescroller(pausecontent2, "pscroller1", "someclass", 2000)
                        </script>
                    </td>
                  </tr>
                </table>
        </div>
      </div>
      <div id="adds">
        <div class="mortality_bg"> <img src="images/add_heading1.png" /> <a href="page.aspx?page_id=5">Click Here for Details</a> </div>
        <div id="farm_bg"><img src="images/add_heading2.png" /><a href="page.aspx?page_id=4">Click Here for Details</a> </div>
        <div id="liability_bg"> <img src="images/add_heading3.png" /> <a href="page.aspx?page_id=3">Click Here for Details</a> </div>
      </div>

<div id="footer">
  <div id="footer_top"></div>
  <div id="footer_middle">
    <ul>
      <li><a href="index.aspx">Home</a>&nbsp;  | </li>
      <li><a href="page.aspx?page_id=2">About Us</a> &nbsp; | </li>
      <li><a href="page.aspx?page_id=6"> Specialists </a> &nbsp; | </li>
      <li><a href="page.aspx?page_id=5">Mortality</a> &nbsp;| </li>
      <li><a href="page.aspx?page_id=3">Equine Liability </a> &nbsp;| </li>
      <li><a href="page.aspx?page_id=4">Farm & Ranch </a> &nbsp;| </li>
      <li><a href="page.aspx?page_id=8">Terms of Use </a> &nbsp;| </li>
      <li><a href="page.aspx?page_id=9">Privacy Statement </a> &nbsp;| </li>
      <li><a href="contact.aspx"> Contact Us</a>&nbsp; </li>
    </ul>
    <p>Copyright © equineworldinsurance.com</p>
  </div>
  <div id="footer_bottom"></div>
</div>
</div>
</div>
</div>    
    
<script type="text/javascript">
//<![CDATA[
var Page_Validators =  new Array(document.getElementById("RegularExpressionValidator1"), document.getElementById("RequiredFieldValidator1"));
//]]>
</script>

<script type="text/javascript">
//<![CDATA[
var RegularExpressionValidator1 = document.all ? document.all["RegularExpressionValidator1"] : document.getElementById("RegularExpressionValidator1");
RegularExpressionValidator1.controltovalidate = "txtNewsLetter";
RegularExpressionValidator1.focusOnError = "t";
RegularExpressionValidator1.errormessage = "RegularExpressionValidator";
RegularExpressionValidator1.display = "Dynamic";
RegularExpressionValidator1.validationGroup = "q";
RegularExpressionValidator1.evaluationfunction = "RegularExpressionValidatorEvaluateIsValid";
RegularExpressionValidator1.validationexpression = "\\w+([-+.\']\\w+)*@\\w+([-.]\\w+)*\\.\\w+([-.]\\w+)*";
var RequiredFieldValidator1 = document.all ? document.all["RequiredFieldValidator1"] : document.getElementById("RequiredFieldValidator1");
RequiredFieldValidator1.controltovalidate = "txtNewsLetter";
RequiredFieldValidator1.focusOnError = "t";
RequiredFieldValidator1.errormessage = "RequiredFieldValidator";
RequiredFieldValidator1.display = "Dynamic";
RequiredFieldValidator1.validationGroup = "q";
RequiredFieldValidator1.evaluationfunction = "RequiredFieldValidatorEvaluateIsValid";
RequiredFieldValidator1.initialvalue = "";
//]]>
</script>


<script type="text/javascript">
//<![CDATA[

var Page_ValidationActive = false;
if (typeof(ValidatorOnLoad) == "function") {
    ValidatorOnLoad();
}

function ValidatorOnSubmit() {
    if (Page_ValidationActive) {
        return ValidatorCommonOnSubmit();
    }
    else {
        return true;
    }
}
        //]]>
</script>
</form>
</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...