// <--
// break out of frames
if (window != top) {
	top.location.href=location.href
}

// print page
function printPage() {
	window.print();  
}

// Image pop ups
function popup(url,name,height,width) {
	var newWindow = window.open(url, name, "height="+height+",width="+width+",toolbar=no,menubar=no,scrollbars=yes,resizable=yes,status=no");
	newWindow.focus();
	return newWindow;
}

// Accept Terms Function
function checkCheckBox(f){
	if (f.agree.checked == false ) {
		alert('You must accept the terms and conditions to continue.');
		return false;
	} else 	{
		return true;
	}
}
// -->
