function showCamplainForm(event, formAct) {
	
	var floatForm = Get_DOM_Node('ComplaintForm'); 
		
	Change_LayerVisibility('ComplaintForm', false, true);
	
	if (!floatForm) return true;

	var X = f_scrollLeft() + Math.round(f_clientWidth()/2);
	var Y = f_scrollTop() + Math.round(f_clientHeight()/2);

	Fire_PopupDocLayer('ComplaintForm', event, 'click', X, Y, 2000, closeCamplainForm, (stopALoginFormutoClose = true));

	var alphaBg = Get_DOM_Node('ComplaintAlphaBg');
	alphaBg.style.width = document.body.scrollWidth + 10 + 'px';
	alphaBg.style.height = document.body.scrollHeight + 'px';
	Change_LayerVisibility('ComplaintAlphaBg', true, false);

	return false;
}


function closeCamplainForm(event) {
	
	Change_LayerVisibility('ComplMainImgLoader', false, true);
	Change_LayerVisibility('ComplaintForm', false, true);
	Change_LayerVisibility('ComplaintAlphaBg', false, true);
	return false;
}