// JavaScript Document
<!--
if( (navigator.userAgent.match(/iPhone/i)) || (navigator.userAgent.match(/iPod/i)) )
{
		document.write('<style type="text/css">');
		document.write('#iphone { font-family:Verdana,Arial; width:100%; height: 110px; background-color:#000; text-align:center; border-bottom:3px solid #000;}');
		document.write('#iphone a { font-size: 20pt; padding-top:20px; width:100%; height:100%; display:block; color:#fff; text-decoration:none; z-index:100;}');
		document.write('</style>');
		document.write('<div id="iphone">');
		document.write('<a href="http://www.tac.tv/iphone">Accédez à la version <strong>iPhone &gt;&gt;</strong></a>');
		document.write('</div>');

}
-->