function edno23post(args) {
	if(!args['url'] || !args['title'])
		return false;
	else {
		var domain = args['service'];
		if(typeof(domain) == "undefined")
			domain = "edno23.com";
		var icon = args['icon'];
		if(typeof(icon) == "undefined")
			icon = "http://img.edno23.com/site2/ftrlogo.gif";
		var custom_post_url = args['custom_post_url'];
		if(typeof(custom_post_url) == "undefined")
			custom_post_url = "http://lpetrov.mylo.bg/123post/post.php";
		document.writeln('<a target="_blank" class="edno23postLink" href="' + custom_post_url + '?url=' + encodeURI(args['url']) + '&title='+encodeURI(args['title'])+'&service='+encodeURI(domain)+'"><img src="' + icon + '" border="0" /></a>');
	}
}