var linksOn = false;
//redirect old links
if (parent.location.hash == '#taxing-the-dead') parent.location.replace('/Projects/Car-Park/#taxing-the-dead')
if (parent.location.hash == '#storm') parent.location.replace('/Projects/Car-Park/#storm')
if (parent.location.hash == '#scrutiny') parent.location.replace('/Projects/Car-Park/#scrutiny')
if (parent.location.hash == '#parking') parent.location.replace('/Projects/Car-Park/')
function renderLinks()
{
if (window.location.host.indexOf('flextel') == -1 || linksOn) return;
devLinkDiv=document.getElementById('devLinks'); //global
devLinkDiv.innerHTML =
'<strong>Dev Links only...</strong><br>'+
'<a target="_parent" title="Guide to Sandbach" href="/Guide/_contents.htm/">Guide</a> '+
'<a target="_parent" title="Photo Gallery of Sandbach" href="/Pictures.htm">Gallery</a><br>'+
'<a target="_parent" href="/sitemap.php">s1</a> '+
'<a target="_parent" href="/sitemap.html">s2</a>';
linksOn = true;
setTimeout('eraseLinks();',2000);
}
function eraseLinks()
{
devLinkDiv.innerHTML = '&nbsp;';
linksOn = false;
}

