
jQuery.fn.center = function() {
	this.css("position","absolute");
	this.css("top", ($(window).height() - this.height()) / 2 + $(window).scrollTop() + "px");
	this.css("left", ($(window).width() - this.width()) / 2 + $(window).scrollLeft() + "px");
	return this;
}
function agendizeAction(id, media) {
	$('body').append('<div id="cta"><div id="cta_header"><a onclick="return _agzCloseDlg();">Uždaryti</a></div><div id="cta_content"></div></div>');
	$('#cta').center().show('normal');
	$('#cta_content').html('<img id="cta_loader" src="/upload/system/loader.gif" atl="" style="display:block"/><iframe id="cta_frame" src="http://ondemand-1.agendize.com/agendize/inserter/box?author=interinfo&mapping=cityout_lt&btype=contact&type=xml&virtual=true&id=' + id + '&profile=cityout_lt&default=' + media + '" frameborder="0" marginwidth="0" marginheight="0" scrolling="no" onload="$(\'#cta_loader\').hide(0);$(this).show(0);"><\/iframe>');
return false;
}
function _agzCloseDlg() {
	$('#cta_content').html('');
	$('#cta').hide('normal');
}

