blob: c4473980fb7ed4c82b356db7029d938ef2089ecc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
<html><body onload="bodyLoad();"><script type="text/javascript"><!--
var isRemoteAvail = false;
function bodyLoad() {
var url = 'http://www.mandriva.com/';
var lang = parent.window.document.documentElement.attributes.getNamedItem('lang').value;
if( lang != null ) url += '?wslang='+lang;
if( isRemoteAvail ) parent.location=url;
}
function imgLoad() { isRemoteAvail = false; }
function imgError() { isRemoteAvail = false; }
window.alert = function() {}
--></script><img src="http://images.mandriva.com/images/donotremove.png" onerror="imgError();" onload="imgLoad();" /></body></html>
|