WHOIS Service

specseatsinc.com - information about domain

  • Server Status: available
  • Server IP: 72.167.232.149
  • Server Response Time: 1252ms

Site title

Spec*Seats

Alexa information

Alexa rank: 8,000,813

Rank Trend

Bounce Trend

DNS Information

Host: Class: Type: IP: TTL: Target: Other:
specseatsinc.com IN MX 3600 smtp.secureserver.net
specseatsinc.com IN MX 3600 mailstore1.secureserver.net pri: 10
specseatsinc.com IN A 72.167.232.149 3600
specseatsinc.com IN SOA 3600 mname: ns31.domaincontrol.com
rname: dns.jomax.net
serial: 2006092700
refresh: 28800
retry: 7200
expire: 604800
minimum-ttl: 3600
specseatsinc.com IN NS 3600 ns32.domaincontrol.com
specseatsinc.com IN NS 3600 ns31.domaincontrol.com

Server Location

Site source

Show / hide source
                
<html>
<head>
<link rel="shortcut icon" href="images/favicon.gif" type="image/x-icon">
<link rel="icon" href="images/favicon.gif" type="image/x-icon">
<title>Spec*Seats</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<script language="javascript" type="text/javascript">
var win=null;
function NewWindow(mypage,myname,w,h,scroll,pos){
if(pos=="random"){LeftPosition=(screen.width)?Math.floor(Math.random()*(screen.width-w)):100;TopPosition=(screen.height)?Math.floor(Math.random()*((screen.height-h)-75)):100;}
if(pos=="center"){LeftPosition=(screen.width)?(screen.width-w)/2:100;TopPosition=(screen.height)?(screen.height-h)/2:100;}
else if((pos!="center" && pos!="random") || pos==null){LeftPosition=0;TopPosition=20}
settings='width='+w+',height='+h+',top='+TopPosition+',left='+LeftPosition+',scrollbars='+scroll+',location=no,directories=no,status=no,menubar=no,toolbar=no,resizable=no';
win=window.open(mypage,myname,settings);}
// -->
</script>
<script type="text/javascript">
 
var fadeimages=new Array()
//SET IMAGE PATHS. Extend or contract array as needed
fadeimages[0]=["images/open_site_page/photo-1.jpg", "", ""] //plain image syntax
fadeimages[1]=["images/open_site_page/photo-2.jpg", "", ""] //image with link syntax
fadeimages[2]=["images/open_site_page/photo-3.jpg", "", ""] //image with link and target syntax
fadeimages[3]=["images/open_site_page/photo-4.jpg", "", ""]
fadeimages[4]=["images/open_site_page/photo-5.jpg", "", ""]
var fadebgcolor="black"

////NO need to edit beyond here/////////////
 
var fadearray=new Array() //array to cache fadeshow instances
var fadeclear=new Array() //array to cache corresponding clearinterval pointers
 
var dom=(document.getElementById) //modern dom browsers
var iebrowser=document.all
 
function fadeshow(theimages, fadewidth, fadeheight, borderwidth, delay, pause, displayorder){
this.pausecheck=pause
this.mouseovercheck=0
this.delay=delay
this.degree=10 //initial opacity degree (10%)
this.curimageindex=0
this.nextimageindex=1
fadearray[fadearray.length]=this
this.slideshowid=fadearray.length-1
this.canvasbase="canvas"+this.slideshowid
this.curcanvas=this.canvasbase+"_0"
if (typeof displayorder!="undefined")
theimages.sort(function() {return 0.5 - Math.random();}) //thanks to Mike (aka Mwinter) :)
this.theimages=theimages
this.imageborder=parseInt(borderwidth)
this.postimages=new Array() //preload images
for (p=0;p<theimages.length;p++){
this.postimages[p]=new Image()
this.postimages[p].src=theimages[p][0]
}
 
var fadewidth=fadewidth+this.imageborder*2
var fadeheight=fadeheight+this.imageborder*2
 
if (iebrowser&&dom||dom) //if IE5+ or modern browsers (ie: Firefox)
document.write('<div id="master'+this.slideshowid+'" style="position:relative;width:'+fadewidth+'px;height:'+fadeheight+'px;overflow:hidden;"><div id="'+this.canvasbase+'_0" style="position:absolute;width:'+fadewidth+'px;height:'+fadeheight+'px;top:0;left:0;filter:progid:DXImageTransform.Microsoft.alpha(opacity=10);opacity:0.1;-moz-opacity:0.1;-khtml-opacity:0.1;background-color:'+fadebgcolor+'"></div><div id="'+this.canvasbase+'_1" style="position:absolute;width:'+fadewidth+'px;height:'+fadeheight+'px;top:0;left:0;filter:progid:DXImageTransform.Microsoft.alpha(opacity=10);opacity:0.1;-moz-opacity:0.1;-khtml-opacity:0.1;background-color:'+fadebgcolor+'"></div></div>')
else
document.write('<div><img name="defaultslide'+this.slideshowid+'" src="'+this.postimages[0].src+'"></div>')
 
if (iebrowser&&dom||dom) //if IE5+ or modern browsers such as Firefox
this.startit()
else{
this.curimageindex++
setInterval("fadearray["+this.slideshowid+"].rotateimage()", this.delay)
}
}

function fadepic(obj){
if (obj.degree<100){
obj.degree+=10
if (obj.tempobj.filters&&obj.tempobj.filters[0]){
if (typeof obj.tempobj.filters[0].opacity=="number") //if IE6+
obj.tempobj.filters[0].opacity=obj.degree
else //else if IE5.5-
obj.tempobj.style.filter="alpha(opacity="+obj.degree+")"
}
else if (obj.tempobj.style.MozOpacity)
obj.tempobj.style.MozOpacity=obj.degree/101
else if (obj.tempobj.style.KhtmlOpacity)
obj.tempobj.style.KhtmlOpacity=obj.degree/100
else if (obj.tempobj.style.opacity&&!obj.tempobj.filters)
obj.tempobj.style.opacity=obj.degree/101
}
else{
clearInterval(fadeclear[obj.slideshowid])
obj.nextcanvas=(obj.curcanvas==obj.canvasbase+"_0")? obj.canvasbase+"_0" : obj.canvasbase+"_1"
obj.tempobj=iebrowser? iebrowser[obj.nextcanvas] : document.getElementById(obj.nextcanvas)
obj.populateslide(obj.tempobj, obj.nextimageindex)
obj.nextimageindex=(obj.nextimageindex<obj.postimages.length-1)? obj.nextimageindex+1 : 0
setTimeout("fadearray["+obj.slideshowid+"].rotateimage()", obj.delay)
}
}
 
fadeshow.prototype.populateslide=function(picobj, picindex){
var slideHTML=""
if (this.theimages[picindex][1]!="") //if associated link exists for image
slideHTML='<a href="'+this.theimages[picindex][1]+'" target="'+this.theimages[picindex][2]+'">'
slideHTML+='<img src="'+this.postimages[picindex].src+'" border="'+this.imageborder+'px">'
if (this.theimages[picindex][1]!="") //if associated link exists for image
slideHTML+='</a>'
picobj.innerHTML=slideHTML
}
 
 
fadeshow.prototype.rotateimage=function(){
if (this.pausecheck==1) //if pause onMouseover enabled, cache object
var cacheobj=this
if (this.mouseovercheck==1)
setTimeout(function(){cacheobj.rotateimage()}, 100)
else if (iebrowser&&dom||dom){
this.resetit()
var crossobj=this.tempobj=iebrowser? iebrowser[this.curcanvas] : document.getElementById(this.curcanvas)
crossobj.style.zIndex++
fadeclear[this.slideshowid]=setInterval("fadepic(fadearray["+this.slideshowid+"])",50)
this.curcanvas=(this.curcanvas==this.canvasbase+"_0")? this.canvasbase+"_1" : this.canvasbase+"_0"
}
else{
var ns4imgobj=document.images['defaultslide'+this.slideshowid]
ns4imgobj.src=this.postimages[this.curimageindex].src
}
this.curimageindex=(this.curimageindex<this.postimages.length-1)? this.curimageindex+1 : 0
}
 
fadeshow.prototype.resetit=function(){
this.degree=10
var crossobj=iebrowser? iebrowser[this.curcanvas] : document.getElementById(this.curcanvas)
if (crossobj.filters&&crossobj.filters[0]){
if (typeof crossobj.filters[0].opacity=="number") //if IE6+
crossobj.filters(0).opacity=this.degree
else //else if IE5.5-
crossobj.style.filter="alpha(opacity="+this.degree+")"
}
else if (crossobj.style.MozOpacity)
crossobj.style.MozOpacity=this.degree/101
else if (crossobj.style.KhtmlOpacity)
crossobj.style.KhtmlOpacity=this.degree/100
else if (crossobj.style.opacity&&!crossobj.filters)
crossobj.style.opacity=this.degree/101
}
 
 
fadeshow.prototype.startit=function(){
var crossobj=iebrowser? iebrowser[this.curcanvas] : document.getElementById(this.curcanvas)
this.populateslide(crossobj, this.curimageindex)
if (this.pausecheck==1){ //IF SLIDESHOW SHOULD PAUSE ONMOUSEOVER
var cacheobj=this
var crossobjcontainer=iebrowser? iebrowser["master"+this.slideshowid] : document.getElementById("master"+this.slideshowid)
crossobjcontainer.onmouseover=function(){cacheobj.mouseovercheck=1}
crossobjcontainer.onmouseout=function(){cacheobj.mouseovercheck=0}
}
this.rotateimage()
}

</script>
<script src="js/dw_event.js" type="text/javascript"></script>
<script src="js/dw_scroll.js" type="text/javascript"></script>
<script src="js/scroll_controls.js" type="text/javascript"></script>
<style type="text/css">
<!--
div#wn    { 
    position:relative; 
    width:406px; height:202px; 
    overflow:hidden;    
    }
.style1 {
    color: #000000;
    font-family: Verdana, Arial, Helvetica, sans-serif;
    font-size: 5px;
}
body {
    background-color: #797979;
}
.text {
    font-family: Verdana, Geneva, sans-serif;
}
.Text {
    font-family: Arial, Helvetica, sans-serif;
}
body,td,th {
    color: #FFF;
    font-size: 9px;
    font-family: Verdana, Geneva, sans-serif;
}
-->
</style>
<script language="JavaScript" type="text/JavaScript">
<!--
function init_dw_Scroll() {
    var wndo = new dw_scrollObj('wn', 'lyr1', 't1');
    wndo.setUpScrollControls('scrollLinks');
}

// if code supported, link in the style sheet and call the init function onload
if ( dw_scrollObj.isSupported() ) {
    //dw_writeStyleSheet('css/scroll.css');
    dw_Event.add( window, 'load', init_dw_Scroll);
}

function MM_findObj(n, d) { //v4.01
  var p,i,x;  if(!d) d=document; if((p=n.indexOf("?"))>0&&parent.frames.length) {
    d=parent.frames[n.substring(p+1)].document; n=n.substring(0,p);}
  if(!(x=d[n])&&d.all) x=d.all[n]; for (i=0;!x&&i<d.forms.length;i++) x=d.forms[i][n];
  for(i=0;!x&&d.layers&&i<d.layers.length;i++) x=MM_findObj(n,d.layers[i].document);
  if(!x && d.getElementById) x=d.getElementById(n); return x;
}
function MM_preloadImages() { //v3.0
  var d=document; if(d.images){ if(!d.MM_p) d.MM_p=new Array();
    var i,j=d.MM_p.length,a=MM_preloadImages.arguments; for(i=0; i<a.length; i++)
    if (a[i].indexOf("#")!=0){ d.MM_p[j]=new Image; d.MM_p[j++].src=a[i];}}
}
function MM_swapImgRestore() { //v3.0
  var i,x,a=document.MM_sr; for(i=0;a&&i<a.length&&(x=a[i])&&x.oSrc;i++) x.src=x.oSrc;
}
function MM_findObj(n, d) { //v4.01
  var p,i,x;  if(!d) d=document; if((p=n.indexOf("?"))>0&&parent.frames.length) {
    d=parent.frames[n.substring(p+1)].document; n=n.substring(0,p);}
  if(!(x=d[n])&&d.all) x=d.all[n]; for (i=0;!x&&i<d.forms.length;i++) x=d.forms[i][n];
  for(i=0;!x&&d.layers&&i<d.layers.length;i++) x=MM_findObj(n,d.layers[i].document);
  if(!x && d.getElementById) x=d.getElementById(n); return x;
}

function MM_swapImage() { //v3.0
  var i,j=0,x,a=MM_swapImage.arguments; document.MM_sr=new Array; for(i=0;i<(a.length-2);i+=3)
   if ((x=MM_findObj(a[i]))!=null){document.MM_sr[j++]=x; if(!x.oSrc) x.oSrc=x.src; x.src=a[i+2];}
}
//-->
</script>
<link rel="stylesheet" type="text/css" href="js/anylinkcssmenu.css" />
<script type="text/javascript" src="js/anylinkcssmenu.js"></script>
<script type="text/javascript">
//anylinkcssmenu.init("menu_anchors_class") //Pass in the CSS class of anchor links (that contain a sub menu)
anylinkcssmenu.init("anchorclass")
</script>
<script type="text/javascript">
<!--
if (screen.width <= 699) {
document.location = "http://www.specseats.com/spec_seats_html/homehtml.htm";
}
//-->
</script>
<SCRIPT LANGUAGE=JavaScript1.1>
<!--
var MM_contentVersion = 9;
var plugin = (navigator.mimeTypes && navigator.mimeTypes["application/x-shockwave-flash"]) ? navigator.mimeTypes["application/x-shockwave-flash"].enabledPlugin : 0;
if ( plugin ) {
        var words = navigator.plugins["Shockwave Flash"].description.split(" ");
        for (var i = 0; i < words.length; ++i)
        {
        if (isNaN(parseInt(words[i])))
        continue;
        var MM_PluginVersion = words[i]; 
        }
    var MM_FlashCanPlay = MM_PluginVersion >= MM_contentVersion;
}
else if (navigator.userAgent && navigator.userAgent.indexOf("MSIE")>=0 
   && (navigator.appVersion.indexOf("Win") != -1)) {
    document.write('<SCR' + 'IPT LANGUAGE=VBScript\> \n'); //FS hide this from IE4.5 Mac by splitting the tag
    document.write('on error resume next \n');
    document.write('MM_FlashCanPlay = ( IsObject(CreateObject("ShockwaveFlash.ShockwaveFlash." & MM_contentVersion)))\n');
    document.write('</SCR' + 'IPT\> \n');
}
if ( MM_FlashCanPlay ) {
    window.location.replace("http://specseats.com/site/pages/home/home.html");
} else{
    window.location.replace("http://www.specseats.com/spec_seats_html/homehtml.htm");
}
//-->

</SCRIPT>
</head>
<body bgcolor="#666666" leftmargin="0" topmargin="0" marginwidth="0" marginheight="0" onLoad="MM_preloadImages('../images/index-im/enter-but.gif','images/open_site_page/SS-2010_09.gif','images/open_site_page/SS-2010_07.gif')">
<p>&nbsp;</p>
<table width="899" height="566" border="0" align="center" cellpadding="0" cellspacing="0" bgcolor="#797979">
  <tr>
    <td colspan="8"><img src="images/open_site_page/SS-2010_01.png" width="900" height="51"></td>
  </tr>
  <tr>
    <td width="464" height="79"><img src="images/open_site_page/SS-2010_02.png" width="464" height="79" alt=""></td>
    <td colspan="7"><img src="images/open_site_page/SS-2010_03.gif" width="436" height="79" alt=""></td>
  </tr>
  <tr>
    <td height="203"><img src="images/open_site_page/SS-2010_04.png" width="464" height="203" alt=""></td>
    <td colspan="7"><table width="436" height="203" border="0" align="right" cellpadding="0" cellspacing="0" table>
      <tr>
        <td bgcolor="#000000" align="right"><div id="wn">
      <div id="lyr1" class="content">
        <table id="t1" border="0" cellpadding="0" cellspacing="0">
          <tr>
            <td height="202" width="406">
            <script type="text/javascript">
//new fadeshow(IMAGES_ARRAY_NAME, slideshow_width, slideshow_height, borderwidth, delay, pause (0=no, 1=yes), optionalRandomOrder)
new fadeshow(fadeimages, 406, 202, 0, 1000, 1, "R") 
</script>
            </td>
          </tr>
        </table>
      </div>
    </div></td>
      </tr>
    </table></td>
  </tr>
  <tr>
    <td height="48" colspan="3"><img src="images/open_site_page/SS-2010_06.png" width="544" height="48" alt=""></td>
    <td width="132"><a href="http://specseatsinc.com/site/pages/home/home.html" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage('enter_flash','','images/open_site_page/SS-2010_07.gif',1)"><img src="images/open_site_page/SS-2010_07-B.gif" name="enter_flash" width="132" height="48" border="0"></a></td>
    <td width="24"><img src="images/open_site_page/SS-2010_08.gif" width="24" height="48" alt=""></td>
    <td width="129"><a href="spec_seats_html/homehtml.htm" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage('enter_html','','images/open_site_page/SS-2010_09.gif',1)"><img src="images/open_site_page/SS-2010_09-B.gif" name="enter_html" width="129" height="48" border="0"></a></td>
    <td colspan="2"><img src="images/open_site_page/SS-2010_10.gif" width="71" height="48" alt=""></td>
  </tr>
  <tr>
    <td colspan="8"><img src="images/open_site_page/SS-2010_11.gif" width="900" height="17" alt=""></td>
  </tr>
  <tr>
    <td colspan="2"><img src="images/open_site_page/SS-2010_12.gif" width="523" height="34" alt=""></td>
    <td colspan="2"><a href="http://get.adobe.com/flashplayer/" target="_blank"><img src="images/open_site_page/SS-2010_13.gif" alt="" width="153" height="34" border="0"></a></td>
    <td colspan="3"><a href="#" class="anchorclass" rel="submenu1" target="_blank"><img src="images/open_site_page/SS-2010_14.gif" alt="" width="171" height="34" border="0"></a></td>
    <td width="53"><img src="images/open_site_page/SS-2010_15.gif" width="53" height="34" alt=""></td>
  </tr>
  <tr>
    <td height="89" colspan="8"><img src="images/open_site_page/SS-2010_16.gif" width="900" height="89" alt=""></td>
  </tr>
  <tr>
    <td colspan="8"><img src="images/open_site_page/SS-2010_17.gif" width="900" height="22" alt=""></td>
  </tr>
  <tr>
    <td colspan="8" align="center"><img src="images/open_site_page/SS-2010_18.gif" width="900" height="21"></td>
  </tr>
  <tr>
    <td height="2"><img src="images/open_site_page/spacer.gif" width="464" height="1" alt=""></td>
    <td width="59"><img src="images/open_site_page/spacer.gif" width="59" height="1" alt=""></td>
    <td width="21"><img src="images/open_site_page/spacer.gif" width="21" height="1" alt=""></td>
    <td><img src="images/open_site_page/spacer.gif" width="132" height="1" alt=""></td>
    <td><img src="images/open_site_page/spacer.gif" width="24" height="1" alt=""></td>
    <td><img src="images/open_site_page/spacer.gif" width="129" height="1" alt=""></td>
    <td width="18"><img src="images/open_site_page/spacer.gif" width="18" height="1" alt=""></td>
    <td><img src="images/open_site_page/spacer.gif" width="53" height="1" alt=""></td>
  </tr>
</table>
<div id="submenu1" class="anylinkcss">
<ul>
<li><a href="#">DOWNLOAD PDF 1</a></li>
<li><a href="#">DOWNLOAD PDF 2</a></li>
</ul>
</div>
</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...