<!--

// -------------------------------------------------------------------------------
// xLiveHelp - Customer Interaction System
// Copyright ZClix Software Solutions - Distribution without permission prohibited
// -------------------------------------------------------------------------------
// Version 1.1.1
//
// ChangeLog
// ---------
// 25 April 2006 - Customized for KWD Design
// -------------------------------------------------------------------------------

var chatURL = "http://www.kwddesign.nl/xlh/chat.asp"
var chatW = null;
var movieName = "xMonitor";
var isInternetExplorer = navigator.appName.indexOf("Microsoft") != -1;

function xMonitor_DoFSCommand(command, args) {
	var xMonitorObj = isInternetExplorer ? document.all.xMonitor : document.xMonitor;
	if (command == "startChat") {
		if (chatW!=null) {
			try {
				chatW.focus();
			} catch(e) {}
		} else {
			chatW = window.open(chatURL,"chatWindow","resizable=no, status=no, width=430, height=280");
		}
	}
}
function thisMovie(movieName) {
  if (navigator.appName.indexOf ("Microsoft") !=-1) {
    return window[movieName]
  }	else {
    return document[movieName]
  }
}
// Hook for Internet Explorer.
if (navigator.appName && navigator.appName.indexOf("Microsoft") != -1 && navigator.userAgent.indexOf("Windows") != -1 && navigator.userAgent.indexOf("Windows 3.1") == -1) {
	document.write('<script language=\"VBScript\"\>\n');
	document.write('On Error Resume Next\n');
	document.write('Sub xMonitor_FSCommand(ByVal command, ByVal args)\n');
	document.write('	Call xMonitor_DoFSCommand(command, args)\n');
	document.write('End Sub\n');
	document.write('</script\>\n');
}
//-->