function SubmitGoogleForm(){
if (document.forms[0].viewstate){
document.forms[0].viewstate.value='';}
document.forms.item('IronPointForm').method='GET';
document.forms.item('IronPointForm').action='http://search.kwantlen.ca/search';
document.forms.item('IronPointForm').submit();};

function keyEnter(textField,e){
var keycode;
if (window.event) keycode = window.event.keyCode;
else if (e) keycode = e.which;
else return true;
if (keycode == 13){
SubmitGoogleForm();
return false;}
else
return true;}