<!-- // Hide this script from older browsers

function simplePopup(url, popup_width, popup_height) {
	var screenHeight,screenWidth;
	screenHeight = self.screen.height;
	screenWidth= self.screen.width;
	var positionLeft,positionTop;
	positionLeft = parseInt((screenWidth - popup_width)/2);
	positionTop = parseInt((screenHeight - popup_height)/2);
	window.open(url+'?showPopup=1', 'PopupWindow', 'toolbar=0,scrollbars=1,location=0,statusbar=0,menubar=0,resizable=1,width='+popup_width+',height='+popup_height+',left='+positionLeft+',top='+positionTop);
}

function exitConfirmation() {
	var currentLocation = window.location;
	var value=window.confirm('Are you sure you want to Exit this course?\nYou will lose any unsaved information if you exit now.\nClick OK to exit out of this course. If you would like to go back, click Cancel.');
	if (value) { 
		window.location.replace('/userBookmark?location='+currentLocation);
	}
}

$(document).ready(function(){
	$("#ft").corners("bottom 8px");
	$("#hd").corners("top 8px");
});
// -->
