﻿function KeyDownHandler(btn) {
	// process only the Enter key
	if(event.keyCode == 13)	{
		// cancel the default submit
		event.returnValue = false;
		event.cancel = true;
		// submit the form by programmatically clicking the specified button
		btn.click();
	}
}

function accreditationMarkMessage() {
    alert('This image is for the use of accredited members only.\r\n\r\nAccredited members can access appropriate images from:\r\nLawyers -> Download quality mark.');
}

