function del_comment_id(ID, PAGE, FILTER) {
	this.id=ID
	this.page=PAGE
	this.filter=FILTER
	var confirmmessage = "Are you sure you want to delete comment #"+this.id+" ?";
	var goifokay = "comments.php?cid="+this.id+"&a=1&page="+this.page+"&filter="+this.filter;
	
	if (confirm(confirmmessage)) {
		window.location = goifokay;
	}
}

function del_member_id(ID, PAGE) {
	this.id=ID
	this.page=PAGE
	var confirmmessage = "Are you sure you want to delete member ID #"+this.id+" ?";
	var goifokay = "members.php?uid="+this.id+"&a=1&page="+this.page;
	
	if (confirm(confirmmessage)) {
		window.location = goifokay;
	}
}

function del_video_id(ID, PAGE, FILTER) {
	this.id=ID
	this.page=PAGE
	this.filter=FILTER
	var confirmmessage = "Are you sure you want to delete video ID #"+this.id+" ?";
	var goifokay = "modify.php?vid="+this.id+"&a=1&page="+this.page+"&filter="+this.filter;
	
	if (confirm(confirmmessage)) {
		window.location = goifokay;
	}
}

function del_video_comments(ID, PAGE, FILTER) {
	this.id=ID
	this.page=PAGE
	this.filter=FILTER
	var confirmmessage = "You will remove all comments for video ID #"+this.id+" !";
	var goifokay = "modify.php?vid="+this.id+"&a=2&page="+this.page+"&filter="+this.filter;
	
	if (confirm(confirmmessage)) {
		window.location = goifokay;
	}
}

function del_all_searches() {
	var confirmmessage = "Are you sure you want to delete the search history ?";
	var goifokay = "show_searches.php?a=1";
	if (confirm(confirmmessage)) {
		window.location = goifokay;
	}
}

function del_err_log() {
	var confirmmessage = "Are you sure you want to delete the log?";
	var goifokay = "readlog.php?a=1";
	if (confirm(confirmmessage)) {
		window.location = goifokay;
	}
}

function del_report(ID, PAGE) {
	this.id=ID
	this.page=PAGE
	var confirmmessage = "Click OK to delete this entry.";
	var goifokay = "reports.php?rid="+this.id+"&a=1&page="+this.page;
	
	if (confirm(confirmmessage)) {
		window.location = goifokay;
	}
}

function del_allreports() {
	var confirmmessage = "Click OK to delete all the reports.";
	var goifokay = "reports.php?a=2";
	if (confirm(confirmmessage)) {
		window.location = goifokay;
	}
}

function del_temp_video_id(ID, PAGE) {
	this.id=ID
	this.page=PAGE
	var confirmmessage = "Are you sure you want to delete video ID #"+this.id+" ?";
	var goifokay = "approve.php?vid="+this.id+"&a=delvid&page="+this.page;
	
	if (confirm(confirmmessage)) {
		window.location = goifokay;
	}
}

function del_alltemp() {
	var confirmmessage = "Click OK to delete all videos pending approval.";
	var goifokay = "approve.php?a=delall";
	if (confirm(confirmmessage)) {
		window.location = goifokay;
	} 
}

function del_cat(ID) {
	this.id=ID
	var confirmmessage = "Click OK to delete this category.";
	var goifokay = "cat_manager.php?a=1&cid="+this.id;
	if (confirm(confirmmessage)) {
		window.location = goifokay;
	}
}
		
var horizontal_offset = "9px"; //horizontal offset of hint box from anchor link
var vertical_offset = "0";	 //horizontal offset of hint box from anchor link. No need to change.
var ie = document.all;
var ns6 = document.getElementById&&!document.all;

function getposOffset(what, offsettype){
	var totaloffset = (offsettype=="left") ? what.offsetLeft : what.offsetTop;
	var parentEl = what.offsetParent;
	while (parentEl != null) {
		totaloffset = (offsettype == "left") ? totaloffset+parentEl.offsetLeft : totaloffset+parentEl.offsetTop;
		parentEl = parentEl.offsetParent;
	}
	return totaloffset;
}

function iecompattest(){
	return (document.compatMode && document.compatMode!="BackCompat")? document.documentElement : document.body
}

function clearbrowseredge(obj, whichedge){
	var edgeoffset = (whichedge=="rightedge")? parseInt(horizontal_offset)*-1 : parseInt(vertical_offset)*-1
	if (whichedge == "rightedge"){
		var windowedge = ie && !window.opera ? iecompattest().scrollLeft+iecompattest().clientWidth-30 : window.pageXOffset+window.innerWidth-40;
		dropmenuobj.contentmeasure = dropmenuobj.offsetWidth
		if (windowedge-dropmenuobj.x < dropmenuobj.contentmeasure)
		edgeoffset = dropmenuobj.contentmeasure + obj.offsetWidth + parseInt(horizontal_offset);
	}
	else{
		var windowedge=ie && !window.opera? iecompattest().scrollTop + iecompattest().clientHeight-15 : window.pageYOffset+window.innerHeight-18;
		dropmenuobj.contentmeasure = dropmenuobj.offsetHeight;
		if (windowedge-dropmenuobj.y < dropmenuobj.contentmeasure)
			edgeoffset=dropmenuobj.contentmeasure-obj.offsetHeight
	}
	return edgeoffset;
}

function showhint(menucontents, obj, e, tipwidth){
	if ((ie||ns6) && document.getElementById("hintbox")){
		dropmenuobj=document.getElementById("hintbox")
		dropmenuobj.innerHTML=menucontents
		dropmenuobj.style.left=dropmenuobj.style.top=-500
		if (tipwidth!=""){
		dropmenuobj.widthobj=dropmenuobj.style
		dropmenuobj.widthobj.width=tipwidth
	}
	dropmenuobj.x=getposOffset(obj, "left")
	dropmenuobj.y=getposOffset(obj, "top")
	dropmenuobj.style.left=dropmenuobj.x-clearbrowseredge(obj, "rightedge")+obj.offsetWidth+"px"
	dropmenuobj.style.top=dropmenuobj.y-clearbrowseredge(obj, "bottomedge")+"px"
	dropmenuobj.style.visibility="visible"
	obj.onmouseout=hidetip
	}
}

function hidetip(e){
	dropmenuobj.style.visibility="hidden";
	dropmenuobj.style.left="-500px";
}

function clearText(field){
    if (field.defaultValue == field.value) 
		field.value = '';
    else if (field.value == '') 
		field.value = field.defaultValue;
}

function createhintbox(){
	var divblock=document.createElement("div");
	divblock.setAttribute("id", "hintbox");
	document.body.appendChild(divblock);
}

if (window.addEventListener)
	window.addEventListener("load", createhintbox, false);
else if (window.attachEvent)
	window.attachEvent("onload", createhintbox);
else if (document.getElementById)
	window.onload=createhintbox;


function checkUncheckAll(theElement) {
 var theForm = theElement.form, z = 0;
 for(z=0; z<theForm.length;z++){
  if(theForm[z].type == 'checkbox' && theForm[z].name != 'checkall' && theForm[z].id != 'check_ignore'){
  theForm[z].checked = theElement.checked;
  }
 }
}

/*
 * resizehandle.js (c) Fil 2007, plugin pour jQuery ecrit
 * a partir du fichier resize.js du projet DotClear
 * (c) 2005 Nicolas Martin & Olivier Meunier and contributors
 */
jQuery.fn.resizehandle = function() {
  return this.each(function() {
    var me = jQuery(this);
	var meId = me[0].id;
	if(meId != "textarea")	//	avoid interference with WYSIWYG Editor
	{
		me.after(
		  jQuery('<div class="resizehandle"></div>')
		  .bind('mousedown', function(e) {
			var h = me.height();
			var y = e.clientY;
			var moveHandler = function(e) {
			  me
			  .height(Math.max(20, e.clientY + h - y));
			};
			var upHandler = function(e) {
			  jQuery('html')
			  .unbind('mousemove',moveHandler)
			  .unbind('mouseup',upHandler);
			};
			jQuery('html')
			.bind('mousemove', moveHandler)
			.bind('mouseup', upHandler);
		  })
	    );
	}
  });
}


$(document).ready(function(){
  $("textarea[id!=textarea-WYSIWYG]")
  .resizehandle();
});
// Shows PM notification for errors, news and such
function show_mp3_note(title, description, url_image) {

var unique_id = $.gritter.add({
		// (string | mandatory) the heading of the notification
		title: title,
		// (string | mandatory) the text inside the notification
		text: description,
		// (string | optional) the image to display on the left
		image: url_image,
		// (bool | optional) if you want it to fade out on its own or just sit there
		sticky: true, 
		// (int | optional) the time you want it to be alive for before fading out
		time: '120' 
	});
}

$(document).ready(function() {
	$("#video_check_message").hide();

// setting the tabs in the sidebar hide and show, setting the current tab
	$('div.tabbed_set div').hide();
	$('div.t1').show();
	$('div.tabbed_set ul.tabs li.t1 a').addClass('tab-current');
	
	// SIDEBAR TABS
	$('div.tabbed_set ul li a').click(function(){
	var thisClass = this.className.slice(0,2);
	$('div.tabbed_set div').hide();
	$('div.' + thisClass).show();
	$('div.tabbed_set ul.tabs li a').removeClass('tab-current');
	$(this).addClass('tab-current');
	});

	// edit comments
	/*$("a[id^='lang_select_']").each(
	 function() {
	  var id = parseInt( this.name );
	  var lang = $('#lang_select_' + id);
	  lang.click(
		function()
		{
		 $.post( MELODYURL2+"/index.php", { select_language: 1, lang_id: id }, function() { window.location.reload(); }, '');
		});
	 });
	});
	*/
	
	// close edit comment form;
	$("a[class^='comment_update_']").click(function(){
		var id = $("#" + $(this).attr('class'));
		id.find('div.comment_update_form').hide();
		id.find('span').show();
		return false;
	});
	
	// show edit comment form
    $("div[id^='comment_update_']").click(function(){

		$(this).find('span').hide();
		$(this).find('div.comment_update_form').show();
		
     /* $('div.comment_update').slideUp(); 
	  $(this).addClass("comment_update_form_show");
      $('div.comment_update_form').show('slow');
      // override default a behavior
      return false; 
      */
    });
    $("div.comment_update").hover(function () {
      $(this).addClass("comment_update_hover");
    }, function () {
      $(this).removeClass("comment_update_hover");
    });

	// Update URL 
	$(document).ready(function(){
	$('#preview_url').hide();
	$("#page_name").keyup(update);
	});
	
	function update(){		
	
	$('#preview_url').slideDown('slow');
	var page_name = $("#page_name").val();
	$('#preview_complete_url').html(page_name);
	}

});

// Delete page
function onpage_delete_page(page_id, output_sel, tr_selector) {
	
	var confirm_msg = "You are about to remove this page. Click 'Cancel' to stop, 'OK' to delete";
	var response = false;
	var ret = false;
	
	if (confirm(confirm_msg)) 
	{
		if (output_sel.length > 0) {
			$(output_sel).html('<img src="./images/status_loading.gif" alt="Loading" id="loading" />Loading...').fadeIn('normal');
		}	
		$.ajax({
		   type: "GET",
		   url: "./page_ajax.php", 
		   data: "do=delete&id=" + page_id,
		   dataType: 'html',
		   success: function(data) {
						if (output_sel.length > 0)
						{
							$(output_sel).html(data);
							$(output_sel).show();
						}
						ret = true;
					}
		   });
		
		$(tr_selector).fadeOut('normal');

	}
	return ret;
}

