<!--
function updateMaterialPrice( intMaterialID )
    {
    document.getElementById( 'divArticlePrice' ).innerHTML = aryPrices[ intMaterialID ];
    }

function updateAndSubmitForm( theForm, intPID, intACT, intMAT )
    {
    theForm.PID.value                 = intPID;
    theForm.ACT.value                 = intACT;
    theForm.MAT.value                 = intMAT;
    theForm.wk_article_material.value = intMAT;
    theForm.submit();
    }
    
function openWindow( intArticleId )
    {
    var xLeft = (screen.width / 2) - 185;
    var xTop  = (screen.height / 2) - 290;
    var xWindow = window.open('image.asp?WKA=' + intArticleId,'','left='+xLeft+',top='+xTop+',width=375,height=400,channelmode=0,dependent=0,directories=0,fullscreen=0,location=0,menubar=0,resizable=0,toolbar=0,status=0,scrollbars=no,border=no');
    }

//-->
