// JavaScript Document

function includeJS(filePath){
	var head = document.getElementsByTagName('head').item(0);
	script = document.createElement('script');
	script.src = filePath;
	script.type = 'text/javascript';
	head.appendChild(script)
	
}


function initPagination(){
	var page = new PAGINATION_GINFO(this, document.forms["pagination_form"]);
	page.init();
}

function openMenuPopup(){
	var inner = window.open('restaurant_menu.php','','toolbar=no,location=0,directories=no,status=no,menubar=0,scrollbars=yes,resizable=no,copyhistory=0,width=500,height=600');
}

