function changeColor(FILE,COLOR,SOORT){
	document.getElementById('big').src='shop/Images/big/' + SOORT + '/' + SOORT + '_' + FILE + '_' + COLOR + '.jpg';
}
function delItem(URL,ASK){ 
    //<a href="delItem('page.php?act=del&id=1')">link</a>
	var vraag; 
    vraag=window.confirm(ASK) 
    if (vraag==true){ 
        window.location=URL; 
    } 
}
function vergroting(FOTO,WIDTH,HEIGHT){
	windowWidth = WIDTH;  
	windowHeight = HEIGHT;
	winprops="width="+windowWidth+",height="+windowHeight+",location=no,menubar=no,directories=no,toolbar=no,scrollbars=no,resizable=no,status=no";
	//'width=600,height=60,location=no,menubar=no,directories=no,toolbar=no,scrollbars=no,resizable=yes,status=no'
	win=window.open("vergroting.php?foto=" + FOTO, 'phpGroupWare',winprops );
	if (parseInt(navigator.appVersion) >= 4){
	win.moveTo((screen.width/2)-(windowWidth/2+10),(screen.height/2)-(windowHeight/2+20));
	}
	win.focus();
	//window.open(URL, 'phpGroupWare', 'width=430,height=200,location=no,menubar=no,directories=no,toolbar=no,scrollbars=no,resizable=yes,status=no');
}
function openFoto(PAGE){ 
    windowWidth = 600;   
    windowHeight = 460; 
    winprops="width="+windowWidth+",height="+windowHeight+",location=no,menubar=no,directories=no,toolbar=no,scrollbars=yes,resizable=no,status=no"; 
    win=window.open(PAGE, 'phpGroupWare',winprops ); 
    win.focus(); 
}

