function send_warning(id)
{

url = "http://www.dedd.com.pl/engine/modules/mail.php?id=" + id;
url = encodeURI(url);

startGETRequest(url, onComplete, onEnd);
}

function onEnd()
{

}

function onComplete(text, xml)
{
alert(text);
}
