var currentstockid;
function reprint_show(stockid){
	if(stockid!=currentstockid){
		Position.prepare();
		coords = Position.cumulativeOffset($('reprintme_'+stockid));
		$('reprint_overlay').style.left=coords[0]-12+'px';
		$('reprint_overlay').style.top=coords[1]-20+'px';
		$('reprint_overlay').innerHTML='<img src="/images/loading.gif" align="absmiddle"> Loading...';
		Element.show('reprint_overlay');
		var thisAjax = new Ajax.Updater('reprint_overlay',"/store/restock",{method: 'get', parameters: "&id="+stockid});	
		currentstockid=stockid;
	}else{
		Element.hide('reprint_overlay');
		currentstockid='';
	}	
}

var currentstoreid;
function join_show(storeid){
	if(storeid!=currentstoreid){
		Position.prepare();
		coords = Position.cumulativeOffset($('joinlist'));
		$('join_overlay').style.left=coords[0]-180+'px';
		$('join_overlay').style.top=coords[1]-70+'px';
		$('join_overlay').innerHTML='<img src="/images/loading.gif" align="absmiddle"> Loading...';
		Element.show('join_overlay');
		var thisAjax = new Ajax.Updater('join_overlay',"/store/join",{method: 'get', parameters: "&id="+storeid});	
		currentstoreid=storeid;
	}else{
		Element.hide('join_overlay');
		currentstoreid='';
	}
}