﻿function opencatalogue() {
    var wo = window.open('', 'catalogue_flash', 'width=1024, height=801, resizable=1');
    if (wo.document.getElementsByTagName('object').length == 0) {
        wo.location.href = '/Catalogo2010/';
    }
    wo.focus();
    self.blur();
}
function openShopping(codigo) {
    if (!window.opener.closed) {
        window.opener.location.href = '../detalle.aspx?cod_prod=' + codigo;
        window.opener.focus();
        self.blur();
    }
}