// JavaScript Document

function close_win(){
	if (window.close) {
		window.close();	
	} else {
		alert('Unable to close window, please use the cross in the top right');	
	}
}

function print_win(){
	if (window.print) {
		window.print();
	} else {
		alert('Unable to print please use your browser option  CTRL P');	
	}
	
}