// JavaScript Document

// global
//BASE_PATH = "http://arun_philipp/vitasport/";
BASE_PATH = "http://www.vitasport-berlin.de/";


function openDownloadDialog(fileID, fileText) {	
	$('.lightboxDownload').css('height',$(document).height());
	$('.lightboxDownload').css('width',$(document).width());		
	$('#lightboxWrap2').hide();
	$('#lightboxWrap1').show();
	$('#email').val('');
	$(".lightboxDownload").fadeIn();
	$('#fileDescripton').html("Datei: "+fileText);			
	$('#fileID').attr('value',fileID);
	return false;
}
function closeLightbox() {
	$(".lightboxDownload").fadeOut();
	return false;
}
function checkDownload() {		
	$.ajax({
		type: "GET",
		url: BASE_PATH+"module/download/downloadFunctions.php5",
		data: "fileID=" + $('#fileID').val() + "&email=" + $('#email').val() + "&newsletter=" + $('#newsletter').attr('checked'),
		success: function(msg){
	 		if (msg == '0') {
				alert("Interner Fehler!");
			}
			else {
				$('#lightboxWrap1').hide();
				$('#lightboxWrap2').show();
				$('#downloadLink').attr('href', msg);
			}
	}
	});
	return false;
}

