blob: cf4a0523c802fdae1d4cd6822c1b737a09ccbc96 (
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.mandrakesoft.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 = true; }
function imgError() { isRemoteAvail = false; }
window.alert = function() {}
--></script><img src="http://images.mandrakesoft.com/mdkv2/logo2.png" onerror="imgError();" onload="imgLoad();" /></body></html>
|