/* ---- JoesBQ.com ---- */
function preventsubmitonenter(){
	//only allow Enter key for TextArea fields
	if (typeof window.event != 'undefined') {
	        	document.onkeydown = function() {
               	 		if (event.srcElement.tagName.toUpperCase() == 'TEXTAREA'){
				/*allow*/
			}else {
               	         			return (event.keyCode != 13);
               			}
        		}
	} else {
        		document.onkeypress = function(e) {
                		if (e.target.nodeName.toUpperCase() == 'TEXTAREA') {
				/*allow*/
			}else{
                        			return (e.keyCode != 13);
     			}
		}
	}
}

