townsendcoates.com - information about domain
- Server Status: unavailable
- Server IP: fail
- Server Response Time: down
Site title
Acal Technology - Europes largest specialist electronics distributor
Alexa information
Alexa rank: not in database
Rank Trend
Bounce Trend
DNS Information
| Host: | Class: | Type: | IP: | TTL: | Target: | Other: |
| townsendcoates.com | IN | MX | 86400 | cluster8a.eu.messagelabs.com | pri: 20 | |
| townsendcoates.com | IN | MX | 86400 | cluster8.eu.messagelabs.com | pri: 10 | |
| townsendcoates.com | IN | SOA | 86400 | mname: dns0.star.co.uk rname: abuse.star.net.uk serial: 18 refresh: 86400 retry: 7200 expire: 2419200 minimum-ttl: 86400 |
||
| townsendcoates.com | IN | NS | 86400 | dns1.star.co.uk | ||
| townsendcoates.com | IN | NS | 86400 | dns0.star.co.uk |
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" />
<META NAME="RATING" CONTENT="General">
<META NAME="ROBOTS" CONTENT="index,follow">
<META NAME="REVISIT-AFTER" CONTENT="4 days">
<META NAME="AUTHOR" CONTENT="Keith Lovern,Acal Technology">
<META NAME="keywords" CONTENT="">
<META NAME="description" CONTENT="">
<link rel="alternate" type="application/rss+xml" title="Acal Technology (UK) News Feed" href="http://www.acaltechnology.com/rss/rss.php?location=UK">
<meta name="verify-v1" content="eASpQEI+Nr7QbZlGE8IyS95MED2DV3ZE49jI9eVbVjw=" />
<title>Acal Technology - Europes largest specialist electronics distributor</title>
<link href="assets/content.css" rel="stylesheet" type="text/css" />
<link href="assets/site.css" rel="stylesheet" type="text/css" />
<link href="assets/menu.css" rel="stylesheet" type="text/css" />
<!-- <link href="assets/new.css" rel="stylesheet" type="text/css" /> -->
<link type="text/css" href="jquery/jquery_css/jquery-ui-1.7.custom.css" rel="stylesheet" />
<!--[if lt IE 7.]>
<script defer type="text/javascript" src="javascript/pngfix.js"></script>
<![endif]-->
<script defer type="text/javascript">
var _editor_url="admin/wysiwyg/";
</script>
<script type="text/javascript">
var GB_ROOT_DIR = "greybox/";
var map;
</script>
<script type="text/javascript" src="jquery/jquery/jquery-1.3.2.min.js"></script>
<script type="text/javascript" src="jquery/jquery_ui/jquery-ui-1.7.custom.min.js"></script>
<!-- <script type="text/javascript" src="jquery/jquery_plugins/slider/jquery.bxslider2.0.1.min.js"></script> -->
<script type="text/javascript">
var arVersion = navigator.appVersion.split("MSIE")
var version = parseFloat(arVersion[1])
function fixPNG(myImage)
{
if ((version >= 5.5) && (version < 7) && (document.body.filters))
{
var imgID = (myImage.id) ? "id='" + myImage.id + "' " : ""
var imgClass = (myImage.className) ? "class='" + myImage.className + "' " : ""
var imgTitle = (myImage.title) ?
"title='" + myImage.title + "' " : "title='" + myImage.alt + "' "
var imgStyle = "display:inline-block;" + myImage.style.cssText
var strNewHTML = "<span " + imgID + imgClass + imgTitle
+ " style=\"" + "width:" + myImage.width
+ "px; height:" + myImage.height
+ "px;" + imgStyle + ";"
+ "filter:progid:DXImageTransform.Microsoft.AlphaImageLoader"
+ "(src=\'" + myImage.src + "\', sizingMethod='scale');\"></span>"
myImage.outerHTML = strNewHTML
}
}
function confirmation(curid,msg) {
if (msg==""||msg==null){
msg="Are You Sure you want to delete this record?";
}
var answer = confirm(msg);
if (answer){
return true;
}else{
return false;
}
}
function runsearch(){
$('#search_dialog').text("");
isIE=document.all;
searchlen=isIE ? document.all.mainSearch.value.length : document.getElementById("mainSearch").value.length;
if (searchlen>=3){
$('#search_dialog').text("Loading..");
time_out=setTimeout($('#search_dialog').load("pages/search.ajax.php?search=" + $("#mainSearch").val()).dialog(),500);
//$('#search_dialog').load("pages/search.ajax.php?search=" + $("#mainSearch").val()).dialog();
$('#search_dialog').dialog('open');
$('#search_dialog').data('title.dialog', 'Results for : ' + $("#mainSearch").val());
}else{
$('#search_dialog').data('title.dialog', 'Waiting for a Minimum of 3 Characters in Search Criteria');
$('#search_dialog').text("Waiting..");
}
}
function cart(productid,type){
if (productid!=0){
qty=document.getElementById("qty"+productid).value;
}
var productid = (productid == null) ? 0 : productid;
var qty = (qty == null) ? 0 : qty;
var type = (type == null) ? "view" : type;
//$('#cart_dialog').text("Loading..");
$('#cart_dialog').load("pages/basket.ajax.php?type=" + type + "&qty=" + qty + "&productid=" + productid ).dialog();
$('#cart_dialog').dialog('open');
$('#cart_dialog').data('title.dialog', 'Results for :');
}
// JQUERY START
$(document).ready(function(){
// GLOBAL JQUERY VARIABLES
var username = $("#username");
var password = $("#password");
var allFields = $([]).add(username).add(password);
var tips = $("#validate");
var time_out;
function updateTips(t) {
tips.text(t).effect("highlight",{},1500);
}
function checkLength(o,n,min,max) {
if ( o.val().length > max || o.val().length < min ) {
o.addClass('ui-state-error');
updateTips("Length of " + n + " must be between "+min+" and "+max+".");
return false;
} else {
return true;
}
}
function checkRegexp(o,regexp,n) {
if ( !( regexp.test( o.val() ) ) ) {
o.addClass('ui-state-error');
updateTips(n);
return false;
} else {
return true;
}
}
function show_login(){
$('#login_dialog').show ;
}
function showRequest(formData, jqForm, options) {
// formData is an array; here we use $.param to convert it to a string to display it
// but the form plugin does this for you automatically when it submits the data
var queryString = $.param(formData);
// jqForm is a jQuery object encapsulating the form element. To access the
// DOM element for the form do this:
// var formElement = jqForm[0];
alert('About to submit: \n\n' + queryString);
// here we could return false to prevent the form from being submitted;
// returning anything other than false will allow the form submit to continue
return true;
}
function showResponse(responseText, statusText) {
// for normal html responses, the first argument to the success callback
// is the XMLHttpRequest object's responseText property
// if the ajaxForm method was passed an Options Object with the dataType
// property set to 'xml' then the first argument to the success callback
// is the XMLHttpRequest object's responseXML property
// if the ajaxForm method was passed an Options Object with the dataType
// property set to 'json' then the first argument to the success callback
// is the json data object returned by the server
alert('status: ' + statusText + '\n\nresponseText: \n' + responseText +
'\n\nThe output div should have already been updated with the responseText.');
}
$('#login_dialog').keypress(function(e)
{
if (e.keyCode == 13) {
var form = $( '#login_dialog' ).find( "form" );
form.submit();
}
});
$('#login_dialog').dialog({
autoOpen: false,
width: 250,
height: 225,
modal: true,
resizable: false,
closeOnEscape: true,
buttons: {
"Sign In": function() {
var form = $( '#login_dialog' ).find( "form" );
form.submit();
}
}
});
$('#search_dialog').dialog({
autoOpen: false,
width: 680,
height: 400,
closeOnEscape: true,
buttons: {
"Close": function() {
$(this).dialog("close");
}
}
});
$('#cart_dialog').dialog({
autoOpen: false,
width: 500,
height: 400,
resizable: false,
closeOnEscape: true
});
$("#mainSearch").keyup(function () {
clearTimeout(time_out);
$('#search_dialog').text("User Typing..");
time_out=setTimeout("runsearch()",500);
})
}); // JQUERY END
//document.onmousedown=ddInit;
//document.onmouseup=Function("ddEnabled=false");
</script>
<style type="text/css">
</style>
</head>
<body onload="" onunload="">
<div class="flag_bar">
<table width="100%" border="0" cellspacing="3" cellpadding="0">
<tr>
<td width="50%"><b>Select Location :</b> <img src="images/flags/UK.gif" alt="United Kingdom" border="0"/> <a href="http://www.acaltechnology.com/index.php?page=regional&location=BE"><img src="images/flags/Belgium_grey.gif" alt="Belgium" border="0"/></a> <a href="http://www.acaltechnology.com/index.php?page=regional&location=DE"><img src="images/flags/Germany_grey.gif" alt="Germany" border="0"/></a> <a href="http://www.acaltechnology.com/index.php?page=regional&location=SE"><img src="images/flags/Sweden_grey.gif" alt="Sweden" border="0"/></a> <a href="http://www.acaltechnology.com/index.php?page=regional&location=IT"><img src="images/flags/Italy_grey.gif" alt="Italy" border="0"/></a> <a href="http://www.acaltechnology.com/index.php?page=regional&location=NO"><img src="images/flags/Norway_grey.gif" alt="Norway" border="0"/></a> <a href="http://www.acaltechnology.com/index.php?page=regional&location=FR"><img src="images/flags/France_grey.gif" alt="France" border="0"/></a> <a href="http://www.acaltechnology.com/index.php?page=regional&location=NL"><img src="images/flags/Netherlands_grey.gif" alt="Netherlands" border="0"/></a> <a href="http://www.acaltechnology.com/index.php?page=regional&location=DK"><img src="images/flags/Denmark_grey.gif" alt="Denmark" border="0"/></a> <a href="http://www.acaltechnology.com/index.php?page=regional&location=FI"><img src="images/flags/Finland_grey.gif" alt="Finland" border="0"/></a> <a href="http://www.acaltechnology.com/index.php?page=regional&location=ES"><img src="images/flags/Spain_grey.gif" alt="Spain" border="0"/></a> / English </td>
<td align="right" width="20%">Welcome Guest <span class="userlink"><a href="index.php?page=profile">Register</a> <a href="#" onClick="$('#login_dialog').dialog('open');">Sign in</a></span><!--<div align="right"><a href="print_friendly.php?" target="_blank"><img src="images/print.jpg" alt="Printer Friendly Version" border="0" /></a></div>--></td>
</tr>
</table>
</div>
<div class="wrapper">
<table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr class="hdr_background">
<td width="234"><a href="http://www.acaltechnology.com"><img src="images/acal_logo.jpg" width="260" height="116" alt="Acal Technology Logo" border="0" /></a></td>
<td width="234"><a href="http://www.bfioptilas.com"><img src="images/bfi_logo.jpg" width="210" height="116" alt="BFI Optilas Logo" border="0" /></a></td>
<td>
<table width="100%" style="height: 115px;padding-right: 10px;" border="0" cellspacing="0" cellpadding="0">
<tr>
<td style="text-align:right;"><div style="text-decoration: none;font-size:12px"><b>Tel :</b> +44 (0) 1189 788878 <b>Fax :</b> +44 (0) 1189 776095 <b>Email :</b> acal@acaltechnology.co.uk</div></td>
</tr>
<tr>
<td style="text-align:right;">Product Search : <input id="mainSearch" name="mainSearch" type="text" placeholder="Search..." size="24" /><br /><a style='font-family: Arial, Helvetica, sans-serif;font-size: 11px;font-style: normal;font-weight: bold;color: #1D4F8A;' href="index.php?page=sitesearch">Site Search</a></td>
</tr>
<tr>
<td style="text-align:right;"></td>
</tr>
<tr>
<td style="text-align:right;"><div class="userlink" style="padding-top:10px;text-align:right;color:#00000"><span style="font-size: 12px;">View Cart Summary<a onClick="cart(0,'quote')" Style="cursor: pointer; cursor: hand; font-size: 10px; color : #4400FF;"> Quotation Request </a> | <a onClick="cart(0,'cart')" Style="cursor: pointer; cursor: hand;color : #4400FF; font-size: 10px;"> Online Purchase </a> <a href="http://www.acaltechnology.com/index.php?page=cart" style="font-size: 12px;">Go To Carts</a></span></div></td>
</tr>
</table>
</td>
</tr>
</table>
<!-- MENU and Main Content Area -->
<div class="main"><table width="100%" border="0" cellspacing="3" cellpadding="0">
<tr>
<!-- MENU -->
<td width="255" valign="top" class="menu_cell"><a href="http://www.acaltechnology.com/index.php" style="text-decoration: none;"><div class="category" style="border-left-color:#414548;text-decoration: none;" id="panel1"><span style="text-decoration: none;line-height: 18px; vertical-align: middle">Home</span></div></a><div class="subcategory"><div class="buttons"><div align="center">
<a href="index.php?page=about">About Us</a>
<a href="index.php?page=news">News</a>
<a href="index.php?page=linecard">Line Card</a>
<a href="index.php?page=valueadd">Value Add</a>
</div></div></div><a href="http://www.acaltechnology.com/index.php?page=products&menu=00001&panel=2" style="text-decoration: none;"><div class="category" style="border-left-color: #154398;" id="panel1"><span style="line-height: 16px; vertical-align: middle">Boards & Systems</span></div></a><a href="http://www.acaltechnology.com/index.php?page=products&menu=00002&panel=3" style="text-decoration: none;"><div class="category" style="border-left-color: #86BEB4;" id="panel1"><span style="line-height: 16px; vertical-align: middle">Frequency Control</span></div></a><a href="http://www.acaltechnology.com/index.php?page=products&menu=00003&panel=4" style="text-decoration: none;"><div class="category" style="border-left-color: #E08D61;" id="panel1"><span style="line-height: 16px; vertical-align: middle">Front Panel/Switches</span></div></a><a href="http://www.acaltechnology.com/index.php?page=products&menu=00004&panel=5" style="text-decoration: none;"><div class="category" style="border-left-color: #EE1C23;" id="panel1"><span style="line-height: 16px; vertical-align: middle">Inductive & EMC</span></div></a><a href="http://www.acaltechnology.com/index.php?page=products&menu=00005&panel=6" style="text-decoration: none;"><div class="category" style="border-left-color: #4AA950;" id="panel1"><span style="line-height: 16px; vertical-align: middle">Interconnect</span></div></a><a href="http://www.acaltechnology.com/index.php?page=products&menu=00006&panel=7" style="text-decoration: none;"><div class="category" style="border-left-color: #A15894;" id="panel1"><span style="line-height: 16px; vertical-align: middle">Passive</span></div></a><a href="http://www.acaltechnology.com/index.php?page=products&menu=00012&panel=8" style="text-decoration: none;"><div class="category" style="border-left-color: #C6787B;" id="panel1"><span style="line-height: 16px; vertical-align: middle">Power</span></div></a><a href="http://www.acaltechnology.com/index.php?page=products&menu=00007&panel=9" style="text-decoration: none;"><div class="category" style="border-left-color: #EA8E3A;" id="panel1"><span style="line-height: 16px; vertical-align: middle">RF & Wireless</span></div></a><a href="http://www.acaltechnology.com/index.php?page=products&menu=00008&panel=10" style="text-decoration: none;"><div class="category" style="border-left-color: #942B60;" id="panel1"><span style="line-height: 16px; vertical-align: middle">Semiconductors</span></div></a><a href="http://www.acaltechnology.com/index.php?page=products&menu=00189&panel=11" style="text-decoration: none;"><div class="category" style="border-left-color: #2b0d61;" id="panel1"><span style="line-height: 16px; vertical-align: middle">Sensors</span></div></a><a href="http://www.acaltechnology.com/index.php?page=products&menu=00009&panel=12" style="text-decoration: none;"><div class="category" style="border-left-color: #A2D397;" id="panel1"><span style="line-height: 16px; vertical-align: middle">Thermal</span></div></a></td>
<!-- MAIN CONTENT AREA -->
<td valign="top"><div class="main_wrapper"><div style="padding-bottom:5px;"></div>
<table border="0">
<tr>
<td valign="top">
<div id="portlet_main">
<a href="http://archive.constantcontact.com/fs027/1101079511374/archive/1102779477364.html"><div style="text-align: justify;width:100%">
<html>
<head>
</head>
<body> <a href="http://archive.constantcontact.com/fs027/1101079511374/archive/1102779477364.html"></a>
<div style="width: 100%; min-width: 100%; background-image: url(http://www.acaltechnology.com/_images/marcoms/banner_background_slice1.gif); text-align: center; "><a href="http://archive.constantcontact.com/fs027/1101079511374/archive/1102779477364.html"><img width="400" height="53" title="ACAL Technology - eNewsletter Archive & Sign Up" alt="ACAL Technology - eNewsletter Archive & Sign Up" src="_images/marcoms/eNewsletter_sign_up.gif" border="0" complete="true" /></a></div>
</body>
</html></div></a><img src="images/latest_news.jpg" border="0" style="padding-top:10px;padding-bottom:10px;"><br /><div style="overflow:hidden"><div style="padding-top:0px;padding-bottom:0px;height:88px;font-size:80%;overflow: none;"><div style="float:left;"><div style="width:90px;margin-bottom: 0px;padding-right: 10px;"><a href="index.php?page=news&id=5467" style="text-decoration:none;"><img style="padding-right: 2px;float:left;" src="_images/franchise/Microchip/t/t_LOW%20COST%20PICS.jpg" border="0"></a></div></div><div style="overflow:hidden;text-decoration:none;text-align: left;"><span>09/03/2012</span><br /><b>Microchip Expands PIC24 Lite Microcontroller Portfolio With Lowest-Cost 16-bit PIC