<!--

var is_ie     = ((agt.indexOf("msie") != -1) && (agt.indexOf("opera") == -1));

try
{
  if (is_ie)
  {
    theObjects = document.getElementsByTagName("object");
    for (var i = 0; i < theObjects.length; i++)
    {
       theObjects[i].outerHTML = theObjects[i].outerHTML;
    }
  }
}
catch(e) 
{
    // Browser Object Model isn't supported, so ignore
}

//-->

<!-- BLOCKS ALL JAVASCRIPT ERRORS

function blockError(){return true;}
window.onerror = blockError;

function popitup2()
{
    var Awidth = screen.availWidth
    var Aheight = screen.availHeight
    var PX = (Awidth/2)-(478/2)
    var PY = (Aheight/2)-(630/2)
	newwindow2=window.open('pricing-pop.asp','name','height=630,width=475,left = '+PX+',top = '+PY+'');
}

