<!--
	function CheckKey(e)
	{
		var keycode;
		if (window.event) 
		{
			keycode = window.event.keyCode;
		}
		else if (e) 
		{
			keycode = e.which;
						
		}
		if(keycode == 13)
		{	
			login();
						
		}
	}
	
	function navto(sURL)
	{
		location.href=sURL;
	}

/*			
	function PasswordReminder(){
		window.showModalDialog('../cms/user/password_reminder_frame.asp', '', 'dialogHeight:180px;dialogWidth:420px;help:no;status:no;scroll:no');
	}
	
	function register(sType) 
	{
		var sURL ;
 
		sURL='/legal/cms/register?ShowLoginOption=0&UserType=' + sType;
		window.showModalDialog(sURL, null, 'dialogHeight:580px;dialogWidth:780px;help:no;status:no;scroll:no;resizable:yes;maximize:yes');
	}
*/	
	function opendemo() {

        sURL='/legal/shared/demo/introducer/untitled.html';
		window.showModalDialog(sURL, null, 'dialogHeight:675px;dialogWidth:810px;help:no;status:no;scroll:auto;resizable:yes;maximize:yes');
}
	function opendemo2() {
		sURL='/legal/shared/demo/client/untitled.html';
		window.showModalDialog(sURL, null, 'dialogHeight:675px;dialogWidth:810px;help:no;status:no;scroll:auto;resizable:yes;maximize:yes');
}

function opendemo3() {
		sURL='/legal/shared/demo/solicitor/untitled.html';
		window.showModalDialog(sURL, null, 'dialogHeight:675px;dialogWidth:810px;help:no;status:no;scroll:auto;resizable:yes;maximize:yes');
}
			
-->