function printPage(){
	var msg;
	msg = confirm('Are you sure you want to print this page ');
	if (msg == true){
		print();
	}
}