<!--

var left_position = 0;
var top_position = 0;
if (screen) {
    left_position = 60;
    top_position = 60;
}

function newWin(the_url, the_width, the_height, the_scroll, the_resize) {
    var new_win = window.open(the_url, 'pop_up', 'width=' + the_width + ',height=' + the_height + ',toolbars=no,scrollbars=' + the_scroll + ',resizable=' + the_resize + ',left=' + left_position + ',top=' + top_position);
    new_win.focus();
}

if (self != window.top) {
    window.open(location.href);
}

// -->