<!--
function SubmitContactForm()
{
   if (Validate('contactform')) 
   {
      document.contactform.submit()
   }
}

function SubmitOrderForm()
{
   if (Validate('orderform')) 
   {
      document.orderform.submit()
   }
}

function SubmitLoginForm()
{
   if (Validate('loginform')) 
   {
      document.loginform.submit()
   }
}


function SubmitDocentForm()
{
   if (Validate('docentenform')) 
   {
      document.docentenform.submit()
   }
}


function ShowProvince(strProvince)
{
   if (document.getElementById('provincemapimg') !== null) { document.getElementById('provincemapimg').src = 'images/other/other-' + strProvince.replace(' ', '').replace('-', '') + '.gif' }
}

function HideProvince(strProvince)
{
   if (document.getElementById('provincemaping') !== null) { document.getElementById('provincemapimg').src = 'images/other/other-nederland.gif' }
}

function LoadStudies()
{
   document.selector.submit()
}

function ClearFilter()
{
   document.selector.provinceID.selectedIndex = 0 
   document.selector.schoolID.selectedIndex = 0 
   document.selector.subtypeID.selectedIndex = 0 

}

function ShowHint(strString)
{
   var tempX = 0
   var tempY = 0
   var offset = 5

   if (document.all) 
   {
      tempX = event.clientX + document.body.scrollLeft;
      tempY = event.clientY + document.body.scrollTop;
   } 
   else 
   {
      tempX = e.pageX;
      tempY = e.pageY;
   }

   if (tempX < 0){tempX = 0}
   if (tempY < 0){tempY = 0}

   document.getElementById('hint').style.top  = (tempY + offset) + 'px';
   document.getElementById('hint').style.left = (tempX + offset) + 'px';
   document.getElementById('hint').innerHTML = strString
   document.getElementById('hint').style.visibility = 'visible'
} 


function HideHint()
{
   document.getElementById('hint').style.visibility = 'hidden'
   document.getElementById('hint').innerHTML = ''
}
//-->