

function showKuponPopup(event,obj)
{
    var width = 600;
    var height = 800;
    window.open(obj.href,'parket_kupon','toolbar=no,menubar=yes,scrollbars=yes,resizable=yes,width='+width+',height='+height);
    if (document.all) {
        event.returnValue = true;
    }
    return false;
}
function showPrice(event,obj)
{
    var width = 550;
    var height = 400;
    window.open(obj.href,'parket_price','menubar=yes,scrollbars=yes,resizable=yes,width='+width+',height='+height);
    if (document.all) {
        event.returnValue = true;
    }
    return false;
}

function showDetails(event,obj)
{
    var width = 700;
    var height = 450;
    window.open(obj.href,'parket_price','menubar=yes,scrollbars=yes,resizable=yes,width='+width+',height='+height);
    if (document.all) {
        event.returnValue = true;
    }
    return false;
}

function showOrderForm(event,obj)
{
    var width = 800;
    var height = 350;
    window.open(obj.href,'parket_kupon','toolbar=no,menubar=yes,scrollbars=no,resizable=yes,width='+width+',height='+height);
    if (document.all) {
        event.returnValue = true;
    }
    return false;
}


