<!--
	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='../shared/demo/ehips_demo.html'
	optionIE='dialogHeight:790px;dialogWidth:1030px;help:no;status:no;scroll:auto;resizable:yes;maximize:yes'
	optionFF='height=800,width=1040,toolbar=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,modal=yes'
if (window.showModalDialog) {
window.showModalDialog(sURL , null, optionIE);
} else {
window.open(sURL, null, optionFF);
}
} 


function mouseoverbutton(button, hyperlink) {
button.className='button_details_selected2';
hyperlink.style.color='#001e55';
hyperlink.style.fontWeight='bold';
hyperlink.style.textDecoration='none';
}

function mouseoutbutton(button, hyperlink) {
button.className='button_details2';
hyperlink.style.color='#ffffff';
hyperlink.style.fontWeight='normal';
hyperlink.style.textDecoration='none';
}
			
function Contact()
	        {
	            var sURL;
	            sURL='../scripts/contactme.aspx?system=eHIPs'; //HP
	            window.open(sURL,"ContactMe", "height=200,width=600,help=no,status=no,scroll=auto,resizable=yes,maximize=yes");
	            //window.showModalDialog(sURL, null, 'dialogHeight:230px;dialogWidth:480px;help:no;status:no;scroll:auto;resizable:yes;maximize:yes');
	        }
			

	function register(sType) 
	{
		var sURL ;
 
		sURL='https://www7.utdgroup.com/hips/sys/register';
        window.location.href = sURL;
		//window.showModalDialog(sURL, null, 'dialogHeight:580px;dialogWidth:780px;help:no;status:no;scroll:no;resizable:yes;maximize:yes');
		
        //alert('This functionality will be enabled when eHips go Live!');		
	}

	        function Advert()
	        {
	            var sURL;
	            sURL='http://www1.utdgroup.com/legal/cms/mailshot/aspfiles/hipswine1week/wine_1week.html'; //HP
	            window.open(sURL,"Advert", "height=900,width=620px,help=no,status=no,scroll=auto,resizable=yes,maximize=no");
	            //window.showModalDialog(sURL, null, 'dialogHeight:900px;dialogWidth:620px;help:no;status:no;scroll:auto;resizable:no;maximize:yes');
	        }
-->