<!--

function setCords(e)  
{ 
    x = (document.all) ? window.event.x + document.body.scrollLeft : e.pageX; 
    y = (document.all) ? window.event.y + document.body.scrollTop : e.pageY; 
    
    x -= document.getElementById("bild").offsetLeft; 
    y -= document.getElementById("bild").offsetTop; 
} 

document.onmousemove = setCords; 

function getCords() 
{ 
    //alert("x: " + x + "\ny: " + y);
    var newx= Math.floor(x/16);
    var newy= Math.floor(y/16);
    var url = "http://10000faces.de/draw/editor.php?x="+newx+"&y="+newy;
    GB_showCenter(url, url); 
    
}

function reloadPic(){
	var now = new Date();
	
        document.getElementById("bild").src = document.getElementById("bild").src +"&" + now.getTime();
    
}
//-->

