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

    var is_confirmed = confirm(question);
    if (is_confirmed) {
        if ( typeof(theLink.href) != 'undefined' ) {
            theLink.href += '&confirmed=1';
        } else if ( typeof(theLink.form) != 'undefined' ) {
            theLink.form.action += '?confirmed=1';
        }
    }

    return is_confirmed;
} // end of the 'confirmLink()' function
function Redirect(url)
{
	document.location.href=url;	
}
