function addfav()
{
	if (typeof window.external != 'undefined' && typeof window.external.AddFavorite != 'undefined') {
		window.external.AddFavorite("http://www.dekantoorvakhandel.nl/specialoffice","Special Office");
	} else {
		alert('Deze functie wordt niet ondersteund door uw browser.');
	}
}

function setFocus(controlName)
{
    for (var i = 0; i<document.forms[0].elements.length; i++) {
        if ((document.forms[0].elements[i].type == 'text')) {
			if (document.forms[0].elements[i].name.indexOf(controlName) > -1)
			{
				document.forms[0].elements[i].focus();
				return;
			}
        }
    }
}


