var receiveEmails = "yes";

$(document).ready(function () {
	$('a.basic').click(function (e) {
		e.preventDefault();
		
		$('#basicModalContent').modal();
		
		id = this.id ;
		
		$.ajax({
			method: "get",url: "fckeditor/_samples/php/htmlEditor.php",data: "id="+id,
				success: function(html) {
				$("#fckeditor").html(html);
	 			}
 			});
	});
	
});

function emailOptions() {
	if(receiveEmails == "no") {
		$("#yesimg").attr({
			src: "images/yes_off.gif"
		});
		$("#noimg").attr({
			src: "images/no_on.gif"
		});
	} else {
		$("#yesimg").attr({
			src: "images/yes_on.gif"
		});
		$("#noimg").attr({
			src: "images/no_off.gif"
		});
	}
}

function urlencode(str) {
	return escape(str).replace(/\+/g,'%2B').replace(/%20/g, '+').replace(/\*/g, '%2A').replace(/\//g, '%2F').replace(/@/g, '%40');
}