function popupPage(url,theHeight,theWidth) {

raw_popup('http://www.infurmation.com/showimage.php?image='+url, '_blank', "height=" + theHeight + ",width=" + theWidth + ",location=no," + "scrollbars=no,menubar=no,status=no,toolbars=no,resizable=yes");
//window.open(url, "Popup", "height=" + theHeight + ",width=" + theWidth + ",location=no," + "scrollbars=no,menubars=no,toolbars=no,resizable=yes");
}

// window popup code
// Thanks to Caio Chassot, http://www.alistapart.com/articles/popuplinks/
var _POPUP_FEATURES = '';

function raw_popup(url, target, features) {
    // pops up a window containing url optionally named target, optionally having features
    if (isUndefined(features)) features = _POPUP_FEATURES;
    if (isUndefined(target  )) target   = '_blank';
    var theWindow = window.open(url, target, features);
    return theWindow;
}


// MISC CLEANING-AFTER-MICROSOFT STUFF

function isUndefined(v) {
    var undef;
    return v===undef;
}
