<!--
if (window != window.top) top.location.href=location.href;


function disableselect(e){
return false
}

function reEnable(){
return true
}

document.onselectstart=new Function ("return false")
if (window.sidebar){
document.onmousedown=disableselect
document.onclick=reEnable
}


function getReq() {
	var xmlHttp = false;
            
    // try to create a new instance of the xmlhttprequest object        
    try
    {
        // Internet Explorer
        if( window.ActiveXObject )
        {
            for( var i = 5; i; i-- )
            {
                try
                {
                    // loading of a newer version of msxml dll (msxml3 - msxml5) failed
                    // use fallback solution
                    // old style msxml version independent, deprecated
                    if( i == 2 )
                    {
                        xmlHttp = new ActiveXObject( "Microsoft.XMLHTTP" );    
                    }
                    // try to use the latest msxml dll
                    else
                    {
                        
                        xmlHttp = new ActiveXObject( "Msxml2.XMLHTTP." + i + ".0" );
                    }
                    break;
                }
                catch( excNotLoadable )
                {                        
                    xmlHttp = false;
                }
            }
        }
        // Mozilla, Opera und Safari
        else if( window.XMLHttpRequest )
        {
            xmlHttp = new XMLHttpRequest();
        }
    }
    // loading of xmlhttp object failed
    catch( excNotLoadable )
    {
        xmlHttp = false;
    }
    return xmlHttp;
}


var req = getReq();


function hit(id) {
req.open("GET", 'http://de.poker-strategy.in/track.pl?id='+id, true);
req.send(null);
}


function antispam(code) {
try {
xmlhttp=window.XMLHttpRequest?new XMLHttpRequest():
new ActiveXObject("Microsoft.XMLHTTP");
}
catch (e) { /* do nothing */ }

xmlhttp.onreadystatechange=triggered;
xmlhttp.open("GET",'antispam.pl?code='+code);
xmlhttp.send(null);
}

function triggered() {
document.getElementById('submit').disabled=false;
if (xmlhttp.readyState == 4) if (xmlhttp.status == 200)
result=xmlhttp.responseText;
}
//-->