// JavaScript Document
function InvoiceSend(orderID,email) {

	var url = "http://"+location.hostname+"/"+"inc/ajax/invoice.php";
	var params = "orderID="+orderID+"&email="+email;
	http.open("GET", url+"?"+params, true);
	http.setRequestHeader("Content-type", "application/x-www-form-urlencoded");
	http.setRequestHeader("Content-Type", "text/html; charset=windows-1250");
    http.onreadystatechange = handleResponseInvoiceSend;
    http.send(null);
    document.getElementById('div_invoice_send').innerHTML = '<div align="center"><img src="http://www.studium-v-zahranici.com/workplace/test/images/body/working.gif" width="16" height="16"></div>';	
}

function handleResponseInvoiceSend() {
	
    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('div_invoice_send').innerHTML = update[1];
                eval(update[2]);
            }
        }
    }
}

function waitForInvoiceSend() {
  if(!document.getElementById('div_invoice_send').complete) {
    setTimeout('waitForInvoiceSend()',10);
  }
}

