    // OPEN NEW WINDOW (centered)
    function NewWindow(mypage, myname, w, h, scroll) {
    	var winl = (screen.width - w) / 2;
    	var wint = (screen.height - h) / 2;
    	winprops = 'height='+h+',width='+w+',top='+wint+',left='+winl+',scrollbars='+scroll
    	win = window.open(mypage, myname, winprops)
    	if (parseInt(navigator.appVersion) >= 4) { win.window.focus(); }
    }

    // CLEAR LOGIN
    function ClearLogin(ID,I_NAME) {
    	if (confirm("Weet u zeker dat u uw login-gegevens (gebruikersnaam & wachtwoord) wilt wissen?")) {
    		window.location.replace("reminder.asp?smode=clear");
    	}
    }

    // VALIDATE ISSUE
    function ValidStepOne(){
        if (document.frm.title.value=="") {
        	alert("U dient een omschrijving in te vullen voor uw issue.")
        	document.frm.title.focus()
        return false }
    }

    // ADDITIONAL INFORMATION FORM VALIDATION
    function ValidateADDITIONALINFO(){
        if (document.frm.add_info.value=="") {
        	alert("Vul additionele informatie in.")
        	document.frm.add_info.focus()
        return false }
    }
    // CLEAR BOOKMARKS
    function ClearBooks() {
    	if (confirm("Alle bookmarks verwijderen?")) {
    		window.location.replace("bookmarks.asp?clear=true");
    	}
    }
    // CLOSE ISSUE
    function CloseIssue(ID) {
    	if (confirm("Wilt u dit issue sluiten?")) {
    		window.location.replace("update.asp?ID=" + ID + "&closed=True");
    	}
    }
    // VALIDATE STATUS
    function ValidateStatus(){
        if (document.frm.id.value=="") {
        	alert("Vul een issue ID (nummer) in om de status van het issue op te vragen.")
        	document.frm.id.focus()
        return false }
    }
    // ADD BOOKMARK
    function AddBookmark(ID, CATE) {
    	if (confirm("Dit issue toevoegen aan uw bookmarks?")) {
    		//window.location.replace("bookmark_add.asp?ID=" + ID + "&CATE=" + CATE);
    		location.href = "/html/helpdesk/bookmark_add.asp?ID=" + ID + "&CATE=" + CATE;
    	}
    }
    // REMINDER FORM VALIDATION
    function ValidateREMINDER(){
        if (document.frm.email.value=="") {
        	alert("Vul uw email-adres in.")
        	document.frm.email.focus()
        return false }
    }
    // SEND EMAIL FORM VALIDATION \\
    function ValidateSENDEMAIL(){
        if (document.frm.y_name.value=="") {
        	alert("Vul uw naam in.")
        	document.frm.y_name.focus()
        return false }
        if (document.frm.y_email.value=="") {
        	alert("Vul uw email-adres in.")
        	document.frm.y_email.focus()
        return false }
        if (document.frm.f_name.value=="") {
        	alert("Vul de naam van uw bekende / collega in.")
        	document.frm.f_name.focus()
        return false }
        if (document.frm.f_email.value=="") {
        	alert("Vul het email-adres van uw bekende / collega in.")
        	document.frm.f_email.focus()
        return false }
    }
    // SEARCH FORM VALIDATION \\
    function ValidateSEARCH(){
        if (document.frm.search.value=="") {
        	alert("Vul een zinsnede in om op te zoeken.")
        	document.frm.search.focus()
        return false }
    }
    // MY QUESTIONS LOGIN FORM VALIDATION \\
    function ValidateMYQUESTIONS(){
        if (document.frm.username.value=="") {
        	alert("Vul uw gebruikersnaam in.")
        	document.frm.username.focus()
        return false }
        if (document.frm.password.value=="") {
        	alert("Vul uw wachtwoord in.")
        	document.frm.password.focus()
        return false }
    }
    // SUBMIT ISSUE FORM VALIDATION \\
    function ValidateNEWISSUE(){
        if (document.frm.name.value=="") {
        	alert("Vul uw naam in.")
        	document.frm.name.focus()
        return false }
        if (document.frm.email.value=="") {
        	alert("Vul uw email-adres in.")
        	document.frm.email.focus()
        return false }
        if (document.frm.title.value=="") {
        	alert("Vul de omschrijving in.")
        	document.frm.title.focus()
        return false }
        if (document.frm.question.value=="") {
        	alert("Vul uw vraag in.")
        	document.frm.question.focus()
        return false }
    }
    // OPEN SIDE WIDNOW PANEL
    function MDM_openWindow(theURL,winName,features) {
	  window.resizeTo(screen.width-280,screen.height-26)
	  window.moveTo(0,0);
      var _W=window.open(theURL,winName,features);
	  _W.focus();
	  _W.resizeTo(280,screen.height-26)
      _W.moveTo(screen.width-280,0);
      _W.opener.name = "opener";
    }
    // ASK BEFORE LAUNCHING
    function ASK_MDM_openWindow(theURL,winName,features) {
        if (confirm("Browser toolbar starten? \n\nEen nieuw window zal geopend worden (naast de huidige) met\ngemakkelijk toegankelijke helpdesk issues en zoekfunctionaliteit.")) {
    	  window.resizeTo(screen.width-280,screen.height-26)
    	  window.moveTo(0,0);
          var _W=window.open(theURL,winName,features);
    	  _W.focus();
    	  _W.resizeTo(280,screen.height-26)
          _W.moveTo(screen.width-280,0);
          _W.opener.name = "opener";
    	}
    }
    // VALIDATE COMMENT FORM
    function ValidComment(){
        if (document.frm.comment.value=="") {
        	alert("Vul uw commentaar in.")
        	document.frm.comment.focus()
        return false }
    }
    // DROP DOWN NAVIG
    function Jump(fe){
        var opt_key = fe.selectedIndex;
        var uri_val = fe.options[opt_key].value;
        window.open(uri_val,'_top');
        return true;
    }
