function swapImageSrc (imagename,newpath){
	document.getElementById(imagename).src = "newpath";
}
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"; 
	}
}
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 doing? \n' + theQuery);
    if (is_confirmed) {
        theLink.href;
    }
    return is_confirmed;
}