
/*--------------------------------------------------------------------------------
--------------------------------------------------------------------------------*/

	document.observe('dom:loaded', function(){
		if ($('captcha')){
			$('captcha').writeAttribute("autocomplete", "off" );
		}
	});
	
	

/*--------------------------------------------------------------------------------
	
	
	OMCORE CORE SCRIPTS - The following core scripts are used by features of OmCore
	Removing any of these scripts may prevent certain features from working.
	
	
--------------------------------------------------------------------------------*/

	document.observe('dom:loaded', function(){
	
	/*--------------------------------------------------------------------------------
		Sets <a> links that have a class name 'blank' to open in a new window.
	--------------------------------------------------------------------------------*/

		$$('a.blank, a[rel="external"]').each(function(element){
			element.onclick = function()
			{
				window.open(this.href);
				return false;
			}
			element.onkeypress = function()
			{
				window.open(this.href);
				return false;
			}
		});

	});
	
	
/*--------------------------------------------------------------------------------
--------------------------------------------------------------------------------*/





