// JavaScript Document

function QualityPopUp() {
	
	var choice = confirm("This will open in a new window, you may have to enable pop-ups to view it");
	
	if(choice == true) {
		
		window.open("QualityAssurance.html","","height=125,width=450,toolbar=0,scrollbars=0,resizable=0,menubar=0,status=0,titlebar=0");
		
	}
	
}