// <--
// 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;
}
// -->