// type : 1 - js alert; 2 - div alert; 3 - float div alert; 4 - form alert;
function showMessage(msg, type, place){
    if(type == 1){
        alert(msg);
    }
    if(type == 2){
    }
    if(type == 3){
    }
    if(type == 4){
        showFormAlert(msg,place);
    }
}
function hideMessage(type, place){
    if(type == 2){
    }
    if(type == 3){
    }
    if(type == 4){
		hideFormAlert(place);
    }
}
function showFormAlert(msg,place){
	document.getElementById(place).innerHTML="<div class='ajaxAlertDiv2'>"+msg+"</div>";
}
function hideFormAlert(place){
	document.getElementById(place).innerHTML="&nbsp;";
}


//msgType : 1- INFO; 2-WARING; 3-ERROR
//msgCount: number of messages. Need for define size of window
function showPopupDiv(msg, msgType, msgCount){
}