// Place your application-specific JavaScript functions and classes here
// This file is automatically included by javascript_include_tag :defaults
function handleResponse(documentObject,stringToEvaluate) {
    window.eval(stringToEvaluate);
    if (documentObject.location){ // Should be usefull for IE only .. but I cannot test it
        if(documentObject.location != "") documentObject.location.replace('about:blank');
    }
}


/**
  *
  *  70414
  * NET MAN needs to insert popup subscribe and unsubscribe windows - guess I'll do that here.
  **/

function subWin() {
mywin = window.open("","win",'toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,resizable=1,width=340,height=350');
mywin.location.href = "/cgibin/sub_pop.html";
}
function unsubWin() {
mywin = window.open("","win",'toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,resizable=1,width=340,height=280');
mywin.location.href = "/cgibin/unsub_pop.html";
}

