
function rate(rate) {
	mode = "rate";
	loadXMLDoc("/comments.php?gift_id=" + gift_id + "&rate=" + rate);
}


function shop_redirect(gift_id) {
	mode = "shop_redirect";
	loadXMLDoc("/common/shop_redirect.php?gift_id=" + gift_id);
}

function show_comment(id, author, date, text, is_own) {
    var new_el = document.createElement("div");
    new_el.id = "comment" + id;
    
    new_el.innerHTML = '\n<div class="user_comment">"' + text + '"<br /> - ' + author;

    if (is_own == "1") {
		new_el.innerHTML  += '<a href="javascript:;" onclick="del_comment(' + id + ')"><img src="/common/images/drop.png" /></a><br />';
    }
    
    new_el.innerHTML += '</div><br />';
	
	$("#" + new_el.id).hide();

	document.getElementById('comments').appendChild(new_el);
   	document.getElementById('comments').style.display = "block";
	
//	if (is_new == 1) {
		$("#" + new_el.id).show("drop", "", 500);
		$("#add_comment_button").show("drop", "", 500);
//		$("#add_comment").hide("drop", "", 500);
//	}
}

function del_comment(id) {
	mode = "delete_comment";
	loadXMLDoc("/comments.php?ajax_delete&gift_id=" + gift_id + "&comment_id=" + id);
//	document.getElementById('comments').removeChild(document.getElementById('comment' + id));
	
	$("#comment" + id).hide("drop","",500);
}

var ready_to_add = 1;

function ajax_add_to_my_list(gift_id) {
	mode = "add_to_list";
	loadXMLDoc("/my_wish_list.php?ajax_add_gift=" + gift_id);
}

function logged_in_actions() {
	if (ready_to_add == 0) {
		$("#add_div").toggle("drop");
		$("#add_div_unlogged").toggle("puff");
	}
}