////////////////////////////////////////////////////////////////////////////////////////

// Confiirmation message for deleted items.

function confirmLink(theLink, theSqlQuery)
{
    
    if (typeof(window.opera) != 'undefined') {
        return true;
    }

    var is_confirmed = confirm(theSqlQuery);
    
    if (is_confirmed) {
        theLink.href += '&is_js_confirmed=1';
    }

    return is_confirmed;

} // end of the 'confirmLink()' function

// TRIGGER //////////////////////////////////////////////////////////////////////////////

// onclick="return confirmLink(this, 'Are you sure you would like to delete this file?')"

function confirmLinkMulti(Message)
{

    var return_value = confirm(Message);

    // TEST TO SEE IF TRUE|FALSE RETURNED
    if ( return_value == true ){
	
		return true;
	
	}
	
		else
	{
	
		return false;
	
	}

}

function support_mfta()
{
window.open("/support_mfta.php","support",'toolbar=no,location=no,status=no,menubar=no,scrollbars=yes,width=670,height=590,resizable=yes');
}
