var xhr_test = createXMLHttpRequest();
function printDinamicString(strValue) {
	var elem = gebi('topBarCart');
    if(xhr_test) {
    	xhr_test.open("GET", "http://www.meditua.it/include/topbar_cart.php?intItem_id=" + strValue + '&' + Math.random(), true);
        xhr_test.onreadystatechange = function() {
        if (xhr_test.readyState == 4) {
        	if (xhr_test.status == 200) {
            	elem.innerHTML = xhr_test.responseText;
            } else {
            	return false;//error
            }
         }
     }
     try {
     	xhr_test.send(null);// Send 
     } catch(e) {
     	//error
        xhr_test.abort();
        return false;
      }
     return true;
     }
}

function showBaloon(intItemId, strTitle) { 
	var elem = gebi('addToCartBaloon'); // crea il fumetto coi dati passati dal bottone addtocart
	var strHtml = ('<span class="title" style="background:#33991c;" align="center">&nbsp;PRODOTTO AGGIUNTO AL CARRELLO&nbsp;</span>	<div style="float:left; width:280px; margin:4px 4px 4px 4px;">	<img src="http://www.meditua.it/items/' + intItemId + '_t.jpg" align="left" /><h1 >' + strTitle + '</h1><br>	<table cellpadding="2" cellspacing="2" border="0"><tr><td><a href="http://www.meditua.it/cart_show.php"><img src="http://www.meditua.it/img/cart.gif" /></a></td><td><a href="http://www.meditua.it/cart_show.php">visualizza il carrello</a></td></tr><tr><td><a href="#" onclick="hideBaloon(); return false;"><img src="http://www.meditua.it/img/addtocart_baloon_close.gif" /></a></td><td><a href="#" onclick="hideBaloon(); return false;">chiudi questo avviso</a></td></tr></table></div>');            
    elem.innerHTML = strHtml;
	document.getElementById('addToCartBaloon').style.display = "block";
	setTimeout(function() {hideBaloon();}, 4000);
   
}

function hideBaloon() { 
	document.getElementById('addToCartBaloon').style.display = "none";   
}
