/* requires jquery-1.2.2.js */
function loadHeader() {
	loadMenu('/hincludes/menus/headermenu.html', '#headermenu');
}
function loadFooter() {
	loadMenu('/hincludes/menus/footermenu.html', '#footermenu');
}
function loadLeftNav() {
	loadMenu('/hincludes/menus/leftmenu.html', '#leftmenu');
}
function loadMenu(file, element) {
	$.ajax({
		url: file,
		cache: false,
		success: function(html){
			$(element).replaceWith(html);
		}
	});
}
function openPopupWindow(theLink,width,height) {
    if (width=="") width=400; if (height=="") height=490;
    x = (screen.width/2) - (width/2);
    y = (screen.height/2) - (height/2)-30;
    
    newPopupWindow = window.open(theLink,'newPopupWindow','width='+width+',height='+height+',left='+x+',screenX='+x+',top='+y+',screenY='+y+',toolbar=no,locationbar=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=no')
    newPopupWindow.moveTo(x, y);
}