$(document).ready(function() {

	$("a#galerie").fancybox({
		'hideOnContentClick': true,
		'zoomSpeedIn':	0, 
		'zoomSpeedOut':	0, 
		'overlayShow':	true,
		'titlePosition': 'inside',
		'overlayColor': '#000000',
		'overlayOpacity': 0.8,
	});

	
});


function ForumBeitragMelden(elementid ,postid, topiclink, topicid){
if (confirm('Sind Sie sicher, das Sie diesen Beitrag melden wollen?\n Ein Moderator wird umgehend per E-Mail informiert!'))
	{
    $('#'+elementid).load('http://www.freiesscharpenacken.de/forum/beitrag_melden.php', { 'postid': postid, 'topiclink': topiclink, 'topicid':topicid });			
	$('#'+elementid).show();
    }
}

function ForumBeitragLoeschen(elementid ,postid){
if (confirm('Sind Sie sicher, das Sie diesen Beitrag löschen wollen?'))
	{
    $('#'+elementid).load('http://www.freiesscharpenacken.de/forum/beitrag_loeschen.php', { 'id': postid });			
	$('#'+elementid).show();
    }
}

function CheckKontaktForm(){
	$('#info').load('http://www.freiesscharpenacken.de/kontakt/checkform.php', { 'name': $('#name').val(), 'tel': $('#tel').val(), 'email': $('#email').val(), 'betreff': $('#betreff').val(), 'text': $('#text').val(), 'captcha': $('#captcha').val(), 'captcha_hash': $('#captcha_hash').val() });			
	$('#info').show();
return true;
}


function PopupFileBrowser(){
	settings="width=800,height=533,top=200,left=200,scrollbars=no,location=yes,directories=yes,status=yes,menubar=no,toolbar=no,resizable=no,dependent=no";
	win=window.open('popup_file_browser.html',"picture",settings);
	win.focus();
}

function popup (url, width, height){
	fenster = window.open(url, "Popupfenster", "width="+width+",height="+height+",resizable=yes");
	fenster.focus();
	return false;
}

