ÿþ<!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> <script language='JavaScript'> var time = 10; //How long (in seconds) to countdown var page = "http://www.avaligntech.com/p/cutting_instruments"; //The page to redirect to function countDown(){ time--; gett("value").innerHTML = time; if(time == 0){ window.location = page; time=5; } } function gett(id){ if(document.getElementById) return document.getElementById(id); if(document.all) return document.all.id; if(document.layers) return document.layers.id; if(window.opera) return window.opera.id; } function init(){ if(gett('value')){ setInterval(countDown, 1000); gett("value").innerHTML = time; } else{ setTimeout(init, 50); } } document.onload = init(); </SCRIPT> </HEAD> <BODY> <div style="position:relative;width:722px;height:332px;margin:40px auto;"> <img src="logo.png"><br/> <p style="position:relative;width:500px;text-align:center;margin-left:100px;"> You will be redirected in 10 seconds to the <br/>Cutting Instruments section of the Avalign Technologies website. <br/> If you are not automatically forwarded, please <a href="http://www.avaligntech.com/p/cutting_instruments" >Click Here</a><br/><br/> Our new website is located at www.avaligntech.com Please be sure to update your shortcuts and bookmarks to our new site. </p> <span style="posiition:relative;width:500px;text-align:center;margin-left:100px; display:block;"> You are being redirected to the <br/><b>NGI</b> page in <span id="value"> </span>&nbsp;seconds. </span> </div> </html>