// POP UP functie plaatjes

function popUp(URL) {
day = new Date();
id = day.getTime();
eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=1,location=0,statusbar=0,menubar=0,resizable=0,width=602,height=602,left = 412,top = 259');");
}

// Transparent PLaatjes
if ((navigator.appName.indexOf('Microsoft')+1)) {
document.write('<style type="text/css"> .opacity1 {filter:alpha(opacity=50)} .opacity2 {filter:alpha(opacity=100)} </style>'); }
if ((navigator.appName.indexOf('Netscape')+1)) {
document.write('<style type="text/css"> .opacity1 {-moz-opacity:0.5} .opacity2 {-moz-opacity:1} </style>'); }
else {
document.write(''); }

// FORM ingredienten


    <!--

    function MoveOption(objSourceElement, objTargetElement)

    {

        var aryTempSourceOptions = new Array();

        var x = 0;

        

        //looping through source element to find selected options

        for (var i = 0; i < objSourceElement.length; i++) {

            if (objSourceElement.options[i].selected) {

                //need to move this option to target element

                var intTargetLen = objTargetElement.length++;

                objTargetElement.options[intTargetLen].text = objSourceElement.options[i].text;

                objTargetElement.options[intTargetLen].value = objSourceElement.options[i].value;

            }

            else {

                //storing options that stay to recreate select element

                var objTempValues = new Object();

                objTempValues.text = objSourceElement.options[i].text;

                objTempValues.value = objSourceElement.options[i].value;

                aryTempSourceOptions[x] = objTempValues;

                x++;

            }

        }

        

        //resetting length of source

        objSourceElement.length = aryTempSourceOptions.length;

        //looping through temp array to recreate source select element

        for (var i = 0; i < aryTempSourceOptions.length; i++) {

            objSourceElement.options[i].text = aryTempSourceOptions[i].text;

            objSourceElement.options[i].value = aryTempSourceOptions[i].value;

            objSourceElement.options[i].selected = false;

        }

    }

		function SelectOption(objTargetElement) { for (var i = 0; i < objTargetElement.length; i++) { objTargetElement.options[i].selected = true; } }

		//--> 

