i read it, but apparently to stupid to understand it. i added the jscript to the folder onload and everything else it said to do, it still wont work for me. need a step by step help i guess from point a to z. i didnt think i was this dumb. i placed

file name: jscript_terms.js


$(document).ready(function() {

$('#test').click(function() {
$.blockUI({ message: $('#question'), css: { width: '275px' } });
});

$('#yes').click(function() {
// update the block message
$.blockUI({ message: "<h1>Remote call in progress...</h1>" });

$.ajax({
url: 'wait.php',
cache: false,
complete: function() {
// unblock when remote call returns
$.unblockUI();
}
});
});

$('#no').click(function() {
$.unblockUI();
return false;
});

});

in the jscript folder and then placed


file name on_load_terms.js
terms();

into the onload folder.

but can not figure out where to place the <div> buttons and text stating my popup window and also its not popping up blank either..