// When the enter key is pressed on the form, this method checks for a custom
// attribute on the source element called "ControlToSync" 
function synchronizeKeyDown()
{
//	// Netscape
	if (window.navigator.appName.indexOf("Netscape") != -1)
	{
		// TODO: finish this...
		// window.event.which
	}
	// IE
	else
	{
		if (window.event.keyCode == 13)
		{		
			//if (window.event.srcElement.ControlToSync != undefined)
			//{	
			//	this.document.all[window.event.srcElement.ControlToSync].click()				
			//}
			//window.event.returnValue = false;
		}
	}
}