var openFlag;
	
function onWindowShow(){openFlag = true; setTop();}	

function onWindowHide(){openFlag = false;}

function setTop()
	{
 	 document.getElementById('infoWindow').style.top = (this.scrollY || window.pageYOffset +100)+'px';
//  	 alert(document.getElementById('infoWindow').style.top);
	}
	
function closeWindow()
	{
	onWindowHide();
	$('#infoWindow').jqmHide();
	};
	
function openLabelWindow(label_id)
	{
		if (openFlag) $('#infoWindow').jqmHide();
		$('#infoWindow').html('');
			$('#infoWindow').jqm({ajax:script_path+'ajax/labelInfo.php?id=' + label_id + '&stamp='+ new Date().getTime(), modal:true, toTop:false });
			$('#infoWindow').jqmShow();
			onWindowShow();
	};
	
function reportSpam(contribution_id)
	{
		if (openFlag) $('#infoWindow').jqmHide();
		$('#infoWindow').html('');
			$('#infoWindow').jqm({ajax:script_path+'ajax/contributionSpam.php?id=' + contribution_id + '&stamp='+ new Date().getTime(), modal:true, toTop:false });
			$('#infoWindow').jqmShow();
			onWindowShow();
	};
	
function editContribution(contribution_id)
	{
		if (openFlag) $('#infoWindow').jqmHide();
		$('#infoWindow').html('');
			$('#infoWindow').jqm({ajax:script_path+'ajax/contributionEdit.php?id=' + contribution_id + '&stamp='+ new Date().getTime(), modal:true, toTop:false });
			$('#infoWindow').jqmShow();
			onWindowShow();
	};
	
function openMailWindow(item_id)
	{
		if (openFlag) $('#infoWindow').jqmHide();
		$('#infoWindow').html('');
			$('#infoWindow').jqm({ajax:script_path+'ajax/mailFriend.php?id=' + item_id + '&stamp='+ new Date().getTime(), modal:true, toTop:false });
			$('#infoWindow').jqmShow();
			onWindowShow();
	};