// JavaScript Document
//<!--
/*****************************************************************
* 
* author: Tim Krenzer
* Date: 7-14-07
* 
* This Javascript file contains functions for form actions
* This file is specific to the CE wepages dealing with on and
* off campus courses, it can be used on other pages that use the 
* same format, this code is not very flexible
* 
******************************************************************/

function postRecord (srecord, slocation) {
	document.CourseInfo.location.value = slocation;
	document.CourseInfo.record.value = srecord;
	document.CourseInfo.submit();
}


//-->