// JavaScript Document
function reloadPic() {

    http.open('get', '../inc/ajax/randompic.php');
    http.onreadystatechange = handleResponseRandPic;
    http.send(null);
    document.getElementById('randompicdiv').innerHTML = '<div align="center"><img src="http://www.bookmark.sk/images/body/working.gif" width="16" height="16"></div>';
}

function handleResponseRandPic() {
    if(http.readyState == 4){
        if(http.status == 200 && http.responseText != '') {
            var response = http.responseText;
            var update = new Array();

            if(response.indexOf('|' != -1)) {
                update = response.split('|');
                document.getElementById('randompicdiv').innerHTML = update[1];
                eval(update[2]);
            }
        }
    }
}

function waitForRandPic() {
  if(!document.getElementById('randompic').complete) {
    setTimeout('waitForRandPic()',10);
  }
}
