if you're not using the full url remove the plus sign,
function ask(person){
window.open(+person, "askwin","scrollbars=no, height=250, width=250");
}
so it's
function ask(person){
window.open(person, "askwin","scrollbars=no, height=250, width=250");
}
failing that check all the...