function openURL(url) {

switch(url) {

case 1:
window.location.href = "index.php?page=start";
break;
case 2:
window.location.href = "index.php?page=catalogus";
break;
case 3:
window.location.href = "index.php?page=hulp";
break;
case 4:
window.location.href = "index.php?page=cart";
break;
case 5:
window.location.href = "index.php?page=links";
break;
case 6:
window.location.href = "index.php?page=bestellingen";
break;
case 7:
window.location.href = "index.php?page=klanten";
break;


}





}


function selectrow(number,maxi){
	

for(i=1;i<maxi;i++) {

	document.getElementById("row"+i).className='row';
	}


	
	document.getElementById("row"+number).className='rowSelect';

}


function switchimg(){
	
	if(document.getElementById("imgfile").disabled == true) {
		document.getElementById("imgfile").disabled = false;
	} else {
		document.getElementById("imgfile").disabled = true;
	}
	
	
}


function Copyright() {

document.location.href='http://www.artfact-design.com/Portfolio';
	
}

function changeInfo() {
	document.location.href='index.php?page=editcus';
}

function signoff() {
	document.location.href='signoff.php';
}
function orders() {
	document.location.href='index.php?page=orders';
}


function showhide(name) {
if(document.getElementById("chk"+name).checked == true) {
document.getElementById(name).className='header'	;
} else {
document.getElementById(name).className='nodisplay'	;	
}
}


