﻿function nextForm()
{
if (event.keyCode == 13)
{
  if ((event.srcElement.type != 'textarea') 
         && (event.srcElement.type != 'submit')
         && (event.srcElement.type != '') ) {
	  event.keyCode = 9;
	}


}

}
window.document.onkeydown = nextForm;



function winBBS(url) {
	window.open(
	url,'frewarepopup',
	'width=650,height=500,scrollbars=1,resizable=0');
	return false;
};
