<!-- hide it
// START Popup window
// opens a window that is sized by the windowType variable - descr or pic
function popUp(url)
{
// default window settings for popup window

windowWidth=450;
windowHeight=530;
windowName='refundWindow';
scrolling="scrollbars=yes";
resizing="resizable";
X=500;
Y=250;
var popupFeatures;

popupFeatures=eval('"width=' + windowWidth + ',height=' + windowHeight + ',screenX=' + X + ',screenY=' + Y + ',left=' + X + ',top=' + Y +','+ scrolling + ',' + resizing + '"');

        newwindow=window.open(url, windowName, popupFeatures);
newwindow.opener.name="opener";
        if (window.focus) {newwindow.focus();}

}
// END Popup window

function inputFocus()
{
this.focus();
}

// -->

