﻿if (navigator.appName.indexOf("Microsoft") == -1) // not IE
{
	document.captureEvents(Event.KEYPRESS);
	function processkey(e)
	{
		if ( e.ctrlKey)
			return false;
	}
	document.onkeypress=processkey;
}

