//
// Author: Julian Swagemakers <j.swagemakers@gmx.de>
//         
//

function confirmLink(theLink, theQuery) // code & comment copied from phpMyAdmin (slightly modified)
{
	// 
    // Confirmation is not required in the configuration file
    // or browser is Opera (crappy js implementation)
    //

    var is_confirmed = confirm('Do you realy know what you are doning? \n' + theQuery);
    if (is_confirmed) {
        theLink.href;
    }
    return is_confirmed;
}

function clip (name)
{
	if (document.getElementById("hidden_" + name).style.display == 'none') 
	{
		document.getElementById("hidden_" + name).style.display = "block";
		document.getElementById("hide_" + name).style.display = "none"; 
	}
}