//---
//File: JS_functions.js
//Written By: David Dowen
//Written: October 9, 2008
//Last Modified: October 9, 2008
//Description: This file contains javascript functions for the reservation system
//---
	function show_msg(msg,filename,loadtype) {
     	alert(msg)
     	if (filename != "") {
     		if (loadtype == "R") {
     			alert(loadtype)
     		} else {
     			window.location=filename
     		}
     	}
	}