/*
 *
 * Copyright (c) 1999-2011 NetDimensions Ltd.
 *
 * All rights reserved.
 *
 * This software is the confidential and proprietary information of
 * NetDimensions Ltd. ("Confidential Information").  You shall not
 * disclose such Confidential Information and shall use it only in
 * accordance with the terms of the license agreement you entered into
 * with NetDimensions.
 */

$(function() {
    $('a').each(function(){
        var targetValue = $(this).attr('target');
        if (targetValue == 'fresco_main'){
            $(this).removeAttr('target');
        }
    });
    $('form').each(function(){
        var targetValue = $(this).attr('target');
        if (targetValue == 'fresco_main'){
            $(this).removeAttr('target');
        }
    });
});

function popup(url) {
    window.open(url, "_blank", "toolbar=no, menubar=no, resizable=yes, height=600, width=800");
}
