// JavaScript Document
var str = '<table width="968" height="158" border="0" cellpadding="0" cellspacing="0">';
str += '<tr><td align="left" height="158" class="offline" ';
//Misbah 20/10/06
//Changes to handle the browsers not having Offline mode.
var isOnLine = navigator.onLine;
if(navigator.onLine == null || typeof(navigator.onLine)=="undefined")
	isOnLine = true;
	
if( isOnLine )
	str += 'style="visibility:hidden;"';
else
	str += 'style="visibility:visible;"';
str += '></td></table>';
document.write(str);