Доброго времени суток!
Вывожу алерт, вроде и текста мало, а оно выдает вот такое здоровое окно...
Функция которая выдает:

Код:
function Add_bid(pro_id) {
ajax();
// Load the result from the response page
// ** As far a I know firefox will only load a document on the SAME domain!!
if (doc){
doc.open("GET", "./location.php?section=add_bid&pro_id="+pro_id, false);
doc.send(null);
if(parseInt(doc.responseText)==99999)
document.location="index.php?show=login";
else
{
var mainarraylist=doc.responseText.split("**");
if(mainarraylist.length>1)
{
document.getElementById('price_index_div_'+parseInt(pro_id)).innerHTML = mainarraylist[0];
document.getElementById('winner_index_div_'+parseInt(pro_id)).innerHTML = mainarraylist[1];
document.getElementById('div_blance').innerHTML = mainarraylist[3];
Update_bid_table(parseInt(pro_id));
}
else
alert(doc.responseText);
}
}
}
Как его уменьшить по высоте?