


window.addEvent('domready', function() {
	AdeziuniLinks = $$('.eventAdeziuniLink');
	AdeziuniLinks.addEvent('click', deschideAdeziuneFrame);
	
	InviteLinks = $$('.eventInviteLink');
	InviteLinks.addEvent('click', deschideInviteFrame);
});

function deschideInviteFrame() {
	elid = this.id;
	elid = elid.substr(15);
	
	Ilight = new LightFace.IFrame({ height:600, width:700, url: 'http://www.indagra-farm.ro/newrmx/invitatie_frame.php?invitatie_id='+elid, title: 'Invitatie on-line' }).addButton('Close', function() { this.close(); },'blue').open();	
}

function deschideAdeziuneFrame() {
	elid = this.id;
	elid = elid.substr(17);
	
	Ilight = new LightFace.IFrame({ height:600, width:700, url: 'http://www.indagra-farm.ro/newrmx/adeziune_frame.php?adeziune_id='+elid, title: 'Adeziune Contract' }).addButton('Close', function() { this.close(); },'blue').open();	
}

function deschideDialogAdeziune() {
	elid = this.id;
	elid = elid.substr(17);
	
	ajaxFace = new LightFace.Request({
		url: 'newrmx/adeziune_contract.php?adeziune_id='+elid,
		width: 700,
		height: 600,
		buttons: [
		    { title: 'Ok', event: function() { alert('Ok..');}, color: 'green' },
			{ title: 'Close', event: function() { this.close(); }, color: 'blue' }
		],
		title: 'Adeziune Contract',
		resetOnScroll: false
	}).open();
}

