jQuery.fn.center = function() {
	jQuery.noConflict();
	this.css("position","absolute");
	this.css("top", (jQuery(window).height() - this.height()) / 2 + jQuery(window).scrollTop() + "px");
	this.css("left", (jQuery(window).width() - this.width()) / 2 + jQuery(window).scrollLeft() + "px");
	return this;
}
function OpenClickToAction(mapping, id, profile, media) {
	jQuery.noConflict();
	jQuery('body').append('<div id="cta"><div id="cta_header"><a onclick="javascript:CloseClickToAction();">Uždaryti</a></div><div id="cta_content"></div></div>');
	jQuery('#cta').center().show('normal');
	jQuery('#cta_content').html('<div id="cta_loader"></div><iframe id="cta_frame" src="http://o1.agendize.com/w1/inserter/box?author=interinfo&mapping=' + mapping + '&btype=contact&type=xml&virtual=true&id=' + id + '&profile=' + profile + '&default=' + media + '" frameborder="0" marginwidth="0" marginheight="0" scrolling="no" onload="jQuery(\'#cta_loader\').hide(0);jQuery(this).show(0);"><\/iframe>');
}
function CloseClickToAction() {
	jQuery.noConflict();
	jQuery('#cta_content').html('');
	jQuery('#cta').hide('normal');
}
