function confirmLink(confirmMsg)
{
    // Confirmation is not required in the configuration file
    // or browser is Opera (crappy js implementation)
//    if (confirmMsg == '' || typeof(window.opera) != 'undefined') {
//            return true;
//    }

//    if (submit != 'renew') {
//    	return true;
//    }

    var is_confirmed = confirm(confirmMsg + '\nAre u sure?');

    return is_confirmed;
} // end of the 'confirmLink()' function

function clickclear(thisfield, defaulttext) {
    if (thisfield.value == defaulttext) {
	thisfield.value = "";
    }
}
function clickrecall(thisfield, defaulttext) {
    if (thisfield.value == "") {
	thisfield.value = defaulttext;
    }
}
